mysql使用Navicat创建分区
打开Navicat,创建数据库,并点击创建表,选择选项
创建分区
注:在用字段时,需将字段设置为索引,且每个分区必须有取值
查看分区是否创建成功
先向表中插入数据,然后执行如下语句:
代码语言:javascript复制select
partition_name part,
partition_expression expr,
partition_description descr,
table_rows
from information_schema.partitions where
table_schema = schema()
and table_name='表名字';