Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Yet another SQL Question
Message
From
29/09/2012 12:00:39
 
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2008
Miscellaneous
Thread ID:
01553897
Message ID:
01553944
Views:
67
Think I may be missing something.

Do I understand correctly that

select mykey, name ... into #SubFile from CATMaster where 1= 0

is a way of doing

CREATE TABLE #Subfile
(
mykey int,
name varchar(50,
...
)

and getting the typing from the CATMaster table?

>>Hi all
>>
>>I want to crate a temp table based on a value passed to a stored procedure. Basically I'm trying to do this:
>>
>>If (some critera)
>>  select (field list) into #SubFile from CATMaster where (otherstuff)
>>else
>>  Select (field list) into #SubFile from CatMaster where (otherstuff, slightly different from the first)
>>
>>
>>It's giving me the red squiglly line under the 2nd #Subfile and telling me that one already exists in DB.
>>
>>What is the correct way to do what I want to do in SQL?
>
>If you want to create a temp table of the same structure when
>
>select fieldlist into #SubFile from ... where 1= 0
>
>if ...
>   insert into #SubFile
>   select  .... where
>else
>  insert into #SubFile
>  select ... where ...


Charles Hankey

Though a good deal is too strange to be believed, nothing is too strange to have happened.
- Thomas Hardy

Half the harm that is done in this world is due to people who want to feel important. They don't mean to do harm-- but the harm does not interest them. Or they do not see it, or they justify it because they are absorbed in the endless struggle to think well of themselves.

-- T. S. Eliot
Democracy is two wolves and a sheep voting on what to have for lunch.
Liberty is a well-armed sheep contesting the vote.
- Ben Franklin

Pardon him, Theodotus. He is a barbarian, and thinks that the customs of his tribe and island are the laws of nature.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform