Create table AS Select Query (1 Viewer)

RainX

Registered User.
Local time
Today, 06:33
Joined
Sep 22, 2006
Messages
89
Hello all,

Is there anyway to create a table from a query like you can in oracle?
i.e.

Create Table [B_match] AS
SELECT *
FROM [B_All]

Take care
 

EMP

Registered User.
Local time
Today, 14:33
Joined
May 10, 2003
Messages
574
SELECT * INTO [B_match]
FROM [B_All]

^
 

RainX

Registered User.
Local time
Today, 06:33
Joined
Sep 22, 2006
Messages
89
Worked perfectly!
Thanks alot
 

Users who are viewing this thread

Top Bottom