Viewing 4 posts - 1 through 4 (of 4 total)
This works:
SELECT substring(convert(char,New_idle_duration,114),1,8) as time
--NS
September 5, 2006 at 9:54 am
This works great:
SELECT TOP 2 * WITH TIES FROM AnnualContestRewards
WHERE PopulationGroup = 'METRO'
ORDER BY CIFCode Desc
UNION ALL
SELECT TOP 2 * WITH TIES FROM AnnualContestRewards
WHERE PopulationGroup = 'URBAN'
ORDER BY...
September 5, 2006 at 8:36 am
I think issue is from the spreadsheet, open a new spreadsheet, select all cells, format them to 'TEXT' then copy your original data to this new spreadsheet.
IN SQL Server, Creat...
July 19, 2006 at 7:33 am
I agree with Karl, OrderID can be any number but OrderLineID should be incremented by one for each OrderID added to the table
July 14, 2006 at 8:33 am
Viewing 4 posts - 1 through 4 (of 4 total)