SQL COMPACT CRIAR TABELA

HELDER 16/12/2010 13:54:25
#359670
Viva

Estou usando o SQL COMPACT

Quero criar uma tabela através de outra, tentei da seguinte forma mas está dando erro, alguém me pode ajudar com a sintaxe.

CREATE TABLE temp
AS
SELECT * FROM situation;
MARCIO.ROGERIO 16/12/2010 13:58:23
#359671
Resposta escolhida
Olá,

select * into tabela from tabela1

Até,

Rogério
HELDER 16/12/2010 14:47:42
#359680
System.Data.SqlServerCe.SqlCeException was unhandled
Message=There was an error parsing the query. [ Token line number = 1,Token line offset = 10,Token in error = into ]

Dá erro.Lembro que estou usando SQLcompact


HELDER 16/12/2010 15:30:42
#359687
INSERT INTO situation
(id, data, tipo)
SELECT id, data, tipo
FROM temp

é assim.

O objectivo principal era adicionar uma coluna antes da coluna tipo.
Tentei assim
ALTER TABLE situation ADD COLUMN cod_tipo int AFTER tipo;
mas não deu
Tópico encerrado , respostas não são mais permitidas