create table students(
id int unsigned primary key auto_increment not null,
name varchar(20) default '',
age tinyint unsigned default 0,
height decimal(5,2),
gender enum('男','女','保密'),
cls_id int unsigned default 0
)
8.修改表-添加字段
alter table 表名 add 列名 类型;
例:
alter table students add birthday datetime;
9.修改表-修改字段-重命名版
alter table 表名 change 原名 新名 类型及约束;
例:
alter table students change birthday birth datetime not null;
10.修改表-修改字段不重命名版
alter table 表名 modify 列名 类型及约束;
例:
alter table students modify birth date not null;
11.修改表-删除字段
alter table 表名 drop 列名;
例:
alter table students drop birthday;
12.查看表的创建语句-详细过程
show create table 表名;
例:
show create table classes;
13.删除表-慎重
drop table 表名;
例:
drop table students;
小结
使用 mysql -uroot -p 命令登录数据库.
使用 exit、quit 命令或者 ctrl + d 快捷键退出数据库登录.
使用 show databases 命令查看所有的数据库.
使用 select database() 命令查看当前使用的数据库.
使用 use 数据库名 命令选择使用数据库.
使用 create database 数据库名 charset=utf8; 命令创建数据库。
使用 drop database 数据库名; 命令删除数据库.