首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

ORA-00933 异常,求大神解决

2013-12-02 
ORA-00933 错误,求大神解决select${unitCode} as unit_code, a.patient_id ||||| a.visit_id |||||

ORA-00933 错误,求大神解决
select 
 '${unitCode}' as unit_code,
 a.patient_id ||'|'|| a.visit_id ||'|'|| a.item_no as pk,
 a.patient_id ||'|'|| a.visit_id as fk,
 a.patient_id as patient_id,
 a.visit_id as visit_id,
 a.item_no as item_no,
 a.item_class as item_class,
 a.item_name as item_name,
 a.item_code as item_code,
 a.item_spec as item_spec,
 a.amount as amount,
 a.units as units,
 a.ordered_by as ordered_by,
 a.performed_by as performed_by,
 b.doctor as doctor,
 a.costs as costs,
 a.charges as charges,
 a.billing_date_time as billing_date_time
 from (select *  from inp_bill_detail where patient_id='01165615' and visit_id='1') a left join 
 (select 
 t.ordering_dept,
 t.doctor from 
 (select row_number() over(partition by o.ordering_dept order by count(*) desc) rk,
 o.ordering_dept,
 o.doctor,
 count(*) as order_rows
 from orders o where o.patient_id = '01165615' and o.visit_id = '1' group by o.ordering_dept,o.doctor) t where t.rk = 1) b
 on a.ordered_by=b.ordering_dept;


小弟工作写了段这样的SQL,但是报错00933,我研究了半天,真心发现不了错误,求大神帮忙
[解决办法]
好像是少了一个逗号:




select 
 '${unitCode}' as unit_code,
 a.patient_id 
[解决办法]
'
[解决办法]
'
[解决办法]
 a.visit_id 
[解决办法]
'
[解决办法]
'
[解决办法]
 a.item_no as pk,
 a.patient_id 
[解决办法]
'
[解决办法]
'
[解决办法]
 a.visit_id as fk,
 a.patient_id as patient_id,
 a.visit_id as visit_id,
 a.item_no as item_no,
 a.item_class as item_class,
 a.item_name as item_name,
 a.item_code as item_code,
 a.item_spec as item_spec,
 a.amount as amount,
 a.units as units,
 a.ordered_by as ordered_by,
 a.performed_by as performed_by,
 b.doctor as doctor,
 a.costs as costs,
 a.charges as charges,
 a.billing_date_time as billing_date_time
 from 
 (
 select *  
 from inp_bill_detail 
 where patient_id='01165615' and visit_id='1'
 ) a 
 left join 
 (
 select 
 t.ordering_dept,
 t.doctor 
 from 
 (
 select row_number() over(partition by o.ordering_dept order by count(*) desc), 
 rk,
 o.ordering_dept,
 o.doctor,
 count(*) as order_rows
 from orders o 
 where o.patient_id = '01165615' and o.visit_id = '1' 
 group by o.ordering_dept,o.doctor
 ) t 
 where t.rk = 1
 ) b
 on a.ordered_by=b.ordering_dept;
[解决办法]
试试将'${unitCode}'里面的文字去掉,看看还会不会报错。
[解决办法]
放到 MSSQL执行看看
[解决办法]
这段代码在哪里执行报的错???我在Toad中执行没出什么错误啊。

热点排行