SQL將一個表中的數據插入到另一個表中的方法

創建測試表MyStudentInfo

CREATE table MyStudentInfo
(
  Id int not null primary key,
  Name varchar(16),
  Age int,
  Gender varchar(2),
  Phone varchar(16),
  Address varchar(50),
  GradeId int
)

聯合插入多條數據

INSERT INTO MyStudentInfo
SELECT 1,'張三',20,'1','15801258912','上海',1 UNION
SELECT 2,'李四',22,'1','12345678901','北京',1 UNION
SELECT 3,'王五',16,'1','13976891234','天津',2 UNION
SELECT 4,'趙六',19,'1','18676891234','重慶',3 UNION
SELECT 5,'小紅',21,'2','17776891234','廣州',4 UNION
SELECT 6,'小王',25,'2','13176891234','深圳',2 UNION
SELECT 7,'小劉',18,'2','13374591234','南京',1

一、SELECT INTO 語句從一個表中選取數據,然後把數據插入另一個表中

1、將MyStudentInfo表的所有字段數據插入不存在的表

SELECT * INTO studentinfo_test1 FROM MyStudentInfo

2、將MyStudentInfo表的個別字段數據插入不存在的表

SELECT Id,Name INTO MytestInfo FROM myStudentInfo

3、帶有where子句

SELECT Id,Name,Gender INTO MytestInfo FROM myStudentInfo WHERE Gender='1'

查詢MytestInfo表的數據

4、從一個以上的表中選取數據插入新表

SELECT s.Id,s.Name,s.GradeId,g.GradeName INTO NewTable
 FROM MyStudentInfo s INNER JOIN GradeInfo g
 on s.GradeId=g.Id

查詢NewTable表的數據

二、將studentinfo表裡面的數據插入已經存在的表

將MyStudentInfo表的id,name列插入studentinfo_test2(studentinfo_test2表已經存在)

INSERT INTO studentinfo_test2
SELECT * FROM MyStudentInfo

到此這篇關於SQL將一個表中的數據插入到另一個表中的文章就介紹到這瞭。希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。

推薦閱讀: