是否可以在不指定名称的情况下编写 DROP 第一个分区的代码?
Is it possible to write a code for DROP the first partition without specifying the name?
伪代码如下所示:
ALTER TABLE sql_store.sale_mast13 DROP PARTITION FIRS_VALUE(PARTITIONS)
没有。但是你可以从 information_schema.PARTITIONS
中得到名字。请参阅 http://mysql.rjweb.org/demo_part_maint.pl.txt . For more on partitioning, see the parent page: http://mysql.rjweb.org/doc.php/partitionmaint
中的 GatherPartitionInfo()
伪代码如下所示:
ALTER TABLE sql_store.sale_mast13 DROP PARTITION FIRS_VALUE(PARTITIONS)
没有。但是你可以从 information_schema.PARTITIONS
中得到名字。请参阅 http://mysql.rjweb.org/demo_part_maint.pl.txt . For more on partitioning, see the parent page: http://mysql.rjweb.org/doc.php/partitionmaint
GatherPartitionInfo()