SQL技术内幕-5 比较特殊 insert into 数据的写法

---比较特殊,第一次看到这种写法,记录下来

create table Student  --学生成绩表

(

 id int,  --主键

 Grade int, --班级

 Score int --分数

)

INSERT INTO Student VALUES

(1,1,88),(2,1,66),(3,1,75),(4,2,30),(5,2,70),( 6,2,80),(7,2,60),(8,3,90),(9,3,70),(10,3,80)



SELECT * FROM dbo.Student 

  

你可能感兴趣的:(insert into)