I have a view in SQL, and I want to select some data depending on certain conditions , so is it possible to do

SELECT  * INTO #TABLE_S FROM VIEW_TABLE

Or How do I insert VIEW data into a temporal table in SQL Server 2008?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

This'll work as is written. Am I missing the point of the question?

Note that if #TABLE_S already exists then you should instead use INSERT INTO #TABLE_S SELECT * FROM VIEW_TABLE.

link|improve this answer
Yes, I was having some issues when the tasble already exists, thanks for the query – cMinor May 3 '11 at 23:05
SELECT <column list> INTO #table... will create the table for you - and fails for a table that already exists. Enjoy! – Will A May 3 '11 at 23:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.