通过创建一个数据库mydbs以及表tb_stu和表tb_stu1来说明。
1创建数据库
create database mydbs;
2创建表tb_stu和tb_stu1
2.1进入到数据库mydbs
use mydbs;
2.2创建表
create table tb_stu(name varchar(50),age int,gender char(10));
create table tb_stu1(name varchar(50),age int,gender char(10));
3查看表结构
desc tb_stu;
4 修改表
4.1修改表名称
alter table tb_stu rename to tb_student;
4.2 增加表的属性
alter table tb_stu add phone varchar(11);
4.3 修改表的属性
alter table tb_stu modify phone int;
4.4 删除表的属性
alter table tb_stu drop phone;
5 查看数据库
show databases;
6 查看数据库中的表
需要先进入某个数据库,使用use+数据库名称,然后
show tables;
7删除表
drop table tb_stu1;
8删除数据库
drop database mydbs;
9修改数据库的字符编码
alter database mydbs character set utf8;