Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Select into a table
Message
De
09/12/2003 13:54:39
Alvin Lourdes
Children and Youth Services Cluster
Toronto, Ontario, Canada
 
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
Select into a table
Divers
Thread ID:
00857318
Message ID:
00857318
Vues:
51
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,
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform