我的意思是我尝试了所有使用方法begin
,end
但它不起作用。我怎样才能解决这个问题?
select
case
when exists
(select ORG_UNIT_NAME from aaa.bbb
where ORG_UNIT_NAME ='ccc' and created_Date=to_date('01/11/2012','dd/mm/yyyy') )
then
update aaa.bbb
set PROJECT_QUOTA=555 where ORG_UNIT_NAME ='ccc' and created_Date=to_date('01/11/2012','dd/mm/yyyy')
else
'asd'
end as exist_
from dual
如果我之后使用'ddd'而不是更新它的工作,但为什么更新不起作用。