其他分享
首页 > 其他分享> > 创建学生表

创建学生表

作者:互联网

– 查看MySQL服务器所有数据库

show databases;

在这里插入图片描述
二、创建学生表
create table 202011Student
(
stuid integer not null,
stuname varchar(20) not null,
stusex bit default 1,
stubirth datetime not null,
stutel char(11),
stuaddr varchar(255),
stuphoto longblob,
primary key (stuid)
);

标签:stuname,varchar,show,创建,学生,null,stuid
来源: https://blog.csdn.net/qq_45688164/article/details/109677965