2
这是我的代码片段。 我不知道为什么插入语句(第三段)不起作用?为什么这个插入语句不能在mysql中工作?
/* work nicely*/
create table t1
(
a int,
b varchar(255)
);
/* work nicely*/
insert into t1 values (1,"one"),(2,"two");
/* Why does this one not work??? */
insert into t1
values select * from t1;