level 1
我用with temp(id) as(select id from a) select id from temp是没问题的,但是这样with temp(id) as(select id from a) delete from b where id in( select id from temp)就报104非法符号错误码,求解……
2014年10月30日 09点10分
1
level 1
with as 后面只能跟select ,要写在delete的逻辑关系里面。
2019年02月11日 10点02分
3