我有两个表 1.Inventtable 和 2.Texttable
1.
下一张桌子是
2.
我需要从第二个表中选择项目编号,其中 ID!=2 和文件名 =etable 在 Inventtable.how 中为此编写查询
我有两个表 1.Inventtable 和 2.Texttable
1.
下一张桌子是
2.
我需要从第二个表中选择项目编号,其中 ID!=2 和文件名 =etable 在 Inventtable.how 中为此编写查询
您的查询(对于 SQL Server):
select *
from Inventtable i
inner join Texttable t on t.itemNumber=i.Refkey
where i.ID<>2 and i.filename='etable'
select distinct itemNumber from Inventtable join Texttable on itemNumber=Refkey
where ID != 2 and filename='etable'