MySQL_练习_24.3.11

-- (1)删除数据库
drop database if exists t3;
-- (2)创建数据库
create database if not exists t3;
-- (3)使用数据库
use t3;

-- 删除数据表
drop table if exists book;
-- 在t3中创建数据表
create table book(
图书编号 char(10) not null,
图书列别 varchar(20) not null default '计算机',
书名 varchar(40) not null,
作者 char(10) not null,
出版社 varchar(20) not null,
出版时间 date not null,
单价 float(5,2) not null,
数量 int(5),
折扣 float(3,2),
封面图片 blob
);

-- 显示数据表名
show tables;
-- 显示数据表结构
desc book;

drop table if exists classinfo;
drop table if exists stuinfo;
create table if not exists classinfo(
cid int not null primary key comment '班级编号',
cname varchar(20) not null comment '班级名称'
);
create table if not exists stuinfo(
sid int not null comment '学生编号',
sname varchar(20) not null comment '学生姓名',
sgender char(1) not null comment '学生性别',
sage int(3) not null comment '学生年龄',
sorigin varchar(10) not null comment '学生籍贯',
cid int not null comment '班级编号',
primary key(sid)
);

alter table book add primary key(图书编号);

 

温馨提示:本文最后更新于2024-03-12 00:34:17,某些文章具有时效性,若有错误或已失效,请在下方留言或联系站长
© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
相关推荐
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情

    暂无评论内容