oracle Update语句 40
“updatesett.code=t.newcodefrom(selecta.code,a.rowid,b.newcodefromdictionary_distribut...
“update set t.code=t.newcode from (select a.code,a.rowid,b.newcode from dictionary_distributor a left join jxs_test b on a.code=b.oldcode where b.newcode!='closed') t;”中“where b.newcode!='closed'”会报错 用“and b.newcode!='closed'”不会报错 是什么原因
语法是没有问题的,执行update set t.code=t.newcode from (select a.code,a.rowid,b.newcode from dictionary_distributor a left join jxs_test b on a.code=b.oldcode and b.newcode!='closed') t
是可以更新的, 但是执行 update set t.code=t.newcode from (select a.code,a.rowid,b.newcode from dictionary_distributor a left join jxs_test b on a.code=b.oldcode where b.newcode!='closed') t 就会提示“ora-00903错误 ”表名无效,请问有什么方法解决吗? 展开
语法是没有问题的,执行update set t.code=t.newcode from (select a.code,a.rowid,b.newcode from dictionary_distributor a left join jxs_test b on a.code=b.oldcode and b.newcode!='closed') t
是可以更新的, 但是执行 update set t.code=t.newcode from (select a.code,a.rowid,b.newcode from dictionary_distributor a left join jxs_test b on a.code=b.oldcode where b.newcode!='closed') t 就会提示“ora-00903错误 ”表名无效,请问有什么方法解决吗? 展开
8个回答
展开全部
因为where 前面已经有一个 a.code=b.oldcode 条件子句, 条件子句与条件子句之间只能用or 或者and ,而不能再用where
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
ZESTRON
2024-09-04 广告
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸...
点击进入详情页
本回答由ZESTRON提供
展开全部
hu0829说的对,oracle和sql server不同,是没有update from这种语法结构的。
在使用left jion时,on和where条件的区别如下:
1、 on条件是在生成临时表时使用的条件,它不管on中的条件是否为真,都会返回左边表中的记录。
2、where条件是在临时表生成好后,再对临时表进行过滤的条件。这时已经没有left join的含义(必须返回左边表的记录)了,条件不为真的就全部过滤掉。
在使用left jion时,on和where条件的区别如下:
1、 on条件是在生成临时表时使用的条件,它不管on中的条件是否为真,都会返回左边表中的记录。
2、where条件是在临时表生成好后,再对临时表进行过滤的条件。这时已经没有left join的含义(必须返回左边表的记录)了,条件不为真的就全部过滤掉。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
语法错误。oracle中没有update set from的写法。标准写法是update table set
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-07-26
展开全部
把join去掉
update set t.code=t.newcode from (
select a.code,a.rowid,b.newcode
from dictionary_distributor a , jxs_test b
where a.code=b.oldcode and b.newcode!='closed') t;
或者下面:
update set t.code = (select b.newcode
from dictionary_distributor a , jxs_test b
where a.code=b.oldcode and b.newcode!='closed');
update set t.code=t.newcode from (
select a.code,a.rowid,b.newcode
from dictionary_distributor a , jxs_test b
where a.code=b.oldcode and b.newcode!='closed') t;
或者下面:
update set t.code = (select b.newcode
from dictionary_distributor a , jxs_test b
where a.code=b.oldcode and b.newcode!='closed');
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果是这样呢~这么用起来有条件 否则会1779
update (
select a.code code, b.newcode newcode
from dictionary_distributor a left join jxs_test b
on a.code=b.oldcode
where b.newcode!=‘closed'
)
set code = newcode;
update (
select a.code code, b.newcode newcode
from dictionary_distributor a left join jxs_test b
on a.code=b.oldcode
where b.newcode!=‘closed'
)
set code = newcode;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询