is it possible to do:
(A)
declare @numberofitems Int
@numberofitems = select max(itemorder)
from store, department, etc.
and pass the @numberofitems to a #tempStore table, like:
(B)
(store, department, @numberofitems, ...)
I got itemorder but not the number of items in each department
Alex
--
Sent by 3 from yahoo part from com
This is a spam protected message. Please answer with reference header.
Posted via http://www.usenet-replayer.com/cgi/content/new
(A)
declare @numberofitems Int
@numberofitems = select max(itemorder)
from store, department, etc.
and pass the @numberofitems to a #tempStore table, like:
(B)
(store, department, @numberofitems, ...)
I got itemorder but not the number of items in each department
Alex
--
Sent by 3 from yahoo part from com
This is a spam protected message. Please answer with reference header.
Posted via http://www.usenet-replayer.com/cgi/content/new
Comment