Steve,
You can do a couple of
things:
Create a table and
insert the rows into it.
Create table
VendorTally (VendorN INT, VendorCount INT)
INSERT into VendorTally
select VendorN, (Count(*)) fro master group by VendorN
OR
Create a
view.
Create view
VwVendorTally as select VendorN, (Count(*)) fro master group by
VendorN
Dawn
I am trying to us a tally command to create
a table on the fly
IE: Tally VendorN from master
Can any one advise me of the best way to
accomplish this?
Thanks