create table teachar(
tid VARCHAR(10) not null ,
tname VARCHAR(10) not null
)
insert into teachar(tid ,tname)
values
('01' , '张三'),
('02' , '李四'),
('03' , '王五');
create table teachar(
tid VARCHAR(10) not null ,
tname VARCHAR(10) not null
)
insert into teachar(tid ,tname)
values
('01' , '张三'),
('02' , '李四'),
('03' , '王五');
本文标题:创建表、插入值
本文链接:https://www.haomeiwen.com/subject/oyqabqtx.html
网友评论