-1
Insert into table1 
values ((select * from table2), sysdate, 'open', Null, null);

这就是我想要运行的。我该如何编写这个查询?

4

1 回答 1

3

使用 withVALUES子句的子查询只需要返回一行。如果您的查询返回多行,您可以将其重写如下:

insert into table1 select t2.*, sysdate, 'open', null, null from table2 t2;
于 2013-05-31T09:08:58.330 回答