私は2つのテーブル1.Inventtableと2.Texttableを持っています
1.
そして次のテーブルは
2.
ID!=2 でファイル名が Inventtable の etable である 2 番目のテーブルから項目番号を選択する必要があります。これに対するクエリの書き方
私は2つのテーブル1.Inventtableと2.Texttableを持っています
1.
そして次のテーブルは
2.
ID!=2 でファイル名が Inventtable の etable である 2 番目のテーブルから項目番号を選択する必要があります。これに対するクエリの書き方
クエリ (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'