sql语句 如何判断A表中的a列数据是否在B表中的b列中存在

日期:2009-06-03 17:33:31 人气:2

sql语句 如何判断A表中的a列数据是否在B表中的b列中存在

select A.a from A,B where A.a=B.b 最简单的判断。 用IN的话可能出错:select a from A where a IN(select b from B) 用exists如楼上所说~
    A+
热门评论