删除记录问题?
表rr:
dah fssq dymc
001 aaa 111
001 111
001 222
002 111
003 aaa 111
003 111
如何得到表:
dah fssq dymc
001 222
002 111
也就是说如何将表rr中,fssq=aaa,dymc=111的dah=001,003的dymc=111的所有记录删除。dah不止001.002.003这三个。
[解决办法]
delete from TT where fssq = 'aaa' or
(dymc = '111' and dah IN('001','003'))