insert into tabel select '外部生成',col1,col2,col3,..... from test;
求解!谢谢!
------解决方案-------------------- 如果你tabel1的字段和你test表的字段完全相同(包括列数和类型),那么就可以用 insert into tabel1 select * from test; 来插入了,否则,你最好还是把字段都列出来吧, insert into tabel1(column1,column2...) select a,b... from test;
------解决方案-------------------- create table tables1 as select * from test; alter table tables1 drop column '外部生成'; ^_^
------解决方案--------------------