把students的s_no和s_name复制到stu1的no和name中
当新表没有创建时
create table stu1 as select s_no , s_name from students;
当新表已经创建
insert into stu1(s_no,s_name) select students.s_no,students.s_name from students;
复制学生信息
本文介绍如何使用SQL语句将students表中的s_no和s_name字段复制到已存在的stu1表或新创建的stu1表中。提供了两种情况下的SQL代码实现。
把students的s_no和s_name复制到stu1的no和name中
当新表没有创建时
create table stu1 as select s_no , s_name from students;
当新表已经创建
insert into stu1(s_no,s_name) select students.s_no,students.s_name from students;
1112

被折叠的 条评论
为什么被折叠?