begin
if i_Type=1 then
  open o_cur for
  select a.fdept as 部门,
  sum(case when a.FCYSJ=1 then nvl(a.FYQcyk,0) else 0 end)+  
  sum(case when a.FZysj=1 then nvl(a.FYQzyk,0) else 0 end)+  
  sum(case when a.FBzsj=1 then nvl(a.FYQbzk,0) else 0 end)  
  F1_3M
from PM_ContractDXNew a where (a.FDept=i_FDept or nvl(i_FDept,0)=0) group by a.fdept;oracle存储过程中,把查询的结果重命名,为什么不能命名为1_3月
我命名为1_3月就提示错误,命名为F1_3M就正常,正常的中文不带数字也正确
oracle还有这种限制吗?--!请各位帮忙看下,谢谢