❶ mysql分區數據如何查看
select * from 表 partition (分區表名); -->不管是1級分區還是2級分區都是用partitionselect partition_name , subpartition_name from information_schema.partitions where table_schema='你的資料庫名' and table_name='你的表名'; (這個語句可以查到內你的表的分區名是容什麼,1級分區和2級分區都可以看)