1. 数据库的基本操作
show databases;
information_schema
:信息图式,存储服务器管理数据库的信息
mysql
:存放系统信息,用户名密码等
performance_schema
:性能图式
sys
:系统文件
1.1 创建数据库-student
create database student;create database if not exists student;
create database if not exists `student`;
使用反引号更标准。
1.2 删除数据库
drop database student;drop database if exists student;
1.3 查看创建的数据库
show create database student;
1.4 创建数据库指定字符编码
create databse if not exists `students` charset=utf8;
1.5 修改数据库字符编码
实际开发过程中一般不使用gbk而使用utf8,一定要注意以防乱码。
alter database student charset=gbk;
参考:http://t.csdnimg.cn/ER6gu