Способ отображения деталей не существует на торговый код темп и существовать по частям временную таблицу по профессии код ?
I need to select parts that exist on temp table #parts and not exist on tradecode temp table but by trade code not by partid only suppose i have trade code related to it 2 parts on trade code temp table then i will display all parts not related to tradecode temp table by trade code on my case 1- I have trade code 15 on #tempsupplier 2- I will search on temp table TradeCodes for tradecode 15 3-I Found parts related to 15 on Tradecodes temp table 4-I will get missing parts not related to 15 from temp table parts 5- SO I WILL SHOW 100,200
Что я уже пробовал:
create table #tempsupplier ( SupplierId int, TradeCode int ) insert into #tempsupplier(SupplierId,TradeCode) values (10,15) create table #parts ( PartID int, PartNumber nvarchar(200), SupplierId int, TradeCode int ) insert into #parts (PartID,PartNumber,SupplierId) values (100,'silicon',10), (200,'motherboard',10), (300,'iron',10), (400,'plastic',10), create table #TradeCodes ( PartID int, TradeCode int ) insert into #TradeCodes (PartID,TradeCode) values (300,15), (400,15) FinalResult partid companyid 100 10 200 10
Ankur Ramanuj
Какой вывод вы хотите получить, если tradecode равен null? а что вы хотите, когда tradecode имеет значения?
Можете ли вы легко объяснить, с каким блокиратором вы столкнулись?
ahmed_sa
я объясняю больше и публикую окончательный результат в конце