原文:http://www.cnblogs.com/shootercheng/p/5836657.html
1.查看数据库编码格式
1 |
|
2.查看数据表的编码格式
1 |
|
3.创建数据库时指定数据库的字符集
mysql>create database <数据库名> character set utf8;
4.创建数据表时指定数据表的编码格式
create table tb_books ( name varchar(45) not null, price double not null, bookCount int not null, author varchar(45) not null ) default charset = utf8;
5.修改数据库的编码格式
mysql>alter database <数据库名> character set utf8;
6.修改数据表格编码格式
mysql>alter table <表名> character set utf8;
7.修改字段编码格式
mysql>alter table <表名> change <字段名> <字段名> <类型> character set utf8; mysql>alter table user change username username varchar(20) character set utf8 not null;
8.添加外键
mysql>alter table tb_product add constraint fk_1 foreign key(factoryid) references tb_factory(factoryid); mysql>alter table <表名> add constraint <外键名> foreign key<字段名> REFERENCES <外表表名><字段名>;
9.删除外键
mysql>alter table tb_people drop foreign key fk_1; mysql>alter table <表名> drop foreign key <外键名>;
10.查看建表语句
show create table table_name
11建立索引
alter table table_name add index(col_name)
12删除索引
drop index col_name on table_name
13.查看索引
show index from table_name
14查看系统支持引擎
show engines;
15.建立hash分区
PARTITION BY HASH(store_id) PARTITIONS 4
不可根据data类型就进行分区,partitions 为分区个数,hash意味着数据将对个数取模运算,将数据插入对应的分区
时间: 2024-11-05 12:08:38