开发者

Can i view tables which are under Partition in my sql

开发者 https://www.devze.com 2022-12-08 04:16 出处:网络
开发者_运维技巧Can i view tables which are under Partition in my sql??? How to view such tables???Your question is a bit unclear, but if you mean \"How do I see which tables are using partinioning in

开发者_运维技巧Can i view tables which are under Partition in my sql??? How to view such tables???


Your question is a bit unclear, but if you mean "How do I see which tables are using partinioning in MySQL" and you are using at least MySQL 5.1.6. then you can use the INFORMATION_SCHEMA.PARTITION table:

SELECT TABLE_NAME, PARTITION_NAME FROM INFORMATION_SCHEMA.PARTITIONS;


Follow the below link to obtain the details about table partitions from the INFORMATION_SCHEMA

http://dev.mysql.com/doc/refman/5.5/en/partitions-table.html

0

精彩评论

暂无评论...
验证码 换一张
取 消