|
database
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
SQL Server database programmingmicrosoft.public.sqlserver.programming
Adding a Column to a RecordSet
Kirk -
9 Jan 2007 8:25 PM - 1 message
Hello, I have a stored procedure that gets it's data from a View in SQL server: Select "WO Number", "Part Number", "Complete Date", "WO Quantity" Where [Work Center] Like @WorkCenter Order By [Complete Date] ASC I have code in my client app that returns this as a recordset. ...
Using group by
Roy Goldhammer -
9 Jan 2007 3:48 PM - 1 message
Hello there I have some quries that do distinct part of some data I'm wondering in this case what is better: select distinct ... from ... or select .... from group by ... ...
adding three fields together
childofthe1980s -
7 Jan 2007 6:54 PM - 1 message
Hello: The following is a formula that I created in SQL to add the payment/credit memo amount, discount taken amount, and the write-off amount of each invoice as a column that I call "TOTAL CREDITS": COALESCE(RM20201.APPTOAMT, '0') + COALESCE(RM20201.DISTKNAM, '0') + ...
|
|||||||||||||||||||||||