The following SQL statement is not working:
SELECT stock.IdStock
,stock.Descr
FROM [Inventory].[dbo].[Stock] stock
WHERE stock.IdStock NOT IN
(SELECT foreignStockId FROM
[Subset].[dbo].[Products])
|
The following SQL statement is not working:
|
||||
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Probably returns a
I normally use NOT EXISTS for this type of query
|
|||
|
|
|
Most probably
Query returns at least one NULL Value try EXISTS
|
|||
|
|
Not Working. Error messages; if so, what error message? Unexpected output; if so, give examples of the input data, what you got and what you expected. – Dems Nov 19 '12 at 10:22NULL foreignStockIdinProducts– Martin Smith Nov 19 '12 at 10:22