This commit is contained in:
颜渊 2020-08-06 17:55:35 +08:00
parent cad2a6bbe9
commit 9e7298d4c1
1 changed files with 12 additions and 0 deletions

12
my.sql Normal file
View File

@ -0,0 +1,12 @@
CREATE TABLE student
(
id integer,
name char(20),
age integer,
level integer,
mathsc integer,
engsc integer
);
insert into student VALUES (1,'bob',20,0,76,88),(2,'lily',21,0,89,94),(3,'marry',19,1,80,85);