Hello all.
I have the following problem:
Having a Product table as:
Id int
Status varchar(50)
and a Stock table as:
ProdId int (Product Id in move)
TrDate date (Stock move date)
Is it possible to have a list of all records from Product,
that do not exist in Stock since TrDate.
In other words, retrieve all products without movement at a specified date?
I'd tryed EXIST sub-querie, without sucess...
If anybody can help me, I'll be very grateful.
Thanks in Advance,
Carlos
I have the following problem:
Having a Product table as:
Id int
Status varchar(50)
and a Stock table as:
ProdId int (Product Id in move)
TrDate date (Stock move date)
Is it possible to have a list of all records from Product,
that do not exist in Stock since TrDate.
In other words, retrieve all products without movement at a specified date?
I'd tryed EXIST sub-querie, without sucess...
If anybody can help me, I'll be very grateful.
Thanks in Advance,
Carlos