Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select into a table
Message
From
09/12/2003 13:54:39
Alvin Lourdes
Children and Youth Services Cluster
Toronto, Ontario, Canada
 
 
To
All
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Select into a table
Miscellaneous
Thread ID:
00857318
Message ID:
00857318
Views:
52
Hi,

I have a select statement that returns a number of columns and rows. I would like to insert these rows into a resident table.

Here is an example of what I am trying to do:

SELECT Number,CreatedDate,OrderedDate,OrderCompletedDate
,(CASE WHEN (Number LIKE 'S-%' OR Number LIKE '%-C%')
THEN DATEDIFF(dd,CreatedDate,OrderCompletedDate)
ELSE
DATEDIFF(dd,OrderedDate,OrderCompletedDate)
END) as TurnAroundTime,
Status
FROM AroundTime
WHERE OrderedDate BETWEEN '08/01/2003' AND '10/10/2003'
AND Number LIKE 'TO%'
ORDER BY Number



How can I get the returned data into the resident table?

Thanks,
Next
Reply
Map
View

Click here to load this message in the networking platform