--自动创建了target_table表,并复制source_table表的数据到target_table
select name,age into target_table from source_table
---复制source_table表中的数据到target_table表
insert into target_table(name,age) select name,age from source_table
相关文章
- 03-12SELECT INTO 和 INSERT INTO SELECT比较
- 03-12可以在一个查询中:SELECT x as y1 WHERE y = 1和SELECT x as y2 WHERE y = 2吗?
- 03-12SQL Select 语句小数位数影响计算的准确率的问题
- 03-12select2和bootstrap模态框一起使用导致select2的input获取不到焦点问题
- 03-12select、pselect、poll和epoll的区别
- 03-12sql select sql查询
- 03-12报错:1054:Unknown column 'city' in 'where clause' [ SQL语句 ] : SELECT * FROM `iot_p
- 03-12sql中去除重复的数据 select distinct * from table
- 03-12SQL SELECT DISTINCT 语句
- 03-12SQL中的多表联查(SELECT DISTINCT 语句)