我有一个这样的查询:
SELECT t.TBarcode,t.PlateNo
from dbo.Transaction_tbl t
WHERE Status=0
输出:
TBarcode PlateNo
-------------------- --------------------
6191112123456 123456
6191112123457 123458
6191112123459 123459
我还有一张EmailSendLog_tbl
这样的表:
TBarcode datetime
-------------------- --------------------
6191112123456 2013-07-19 11:12:25.000
6191112123464 2013-07-19 11:12:25.000
我想获取所有内容TBarcode
,PlateNo
但TBarcode
不包含在 中EmailSendLog_tbl
,所以我尝试查询如下内容:
SELECT t.TBarcode, t.PlateNo
from dbo.Transaction_tbl t
WHERE Status = 0 and NOT in (SELECT TBarcode FROM dbo.EmailSendLog_tbl)
但这显示错误:
关键字“in”附近的语法不正确