• 2025-09-19
mysql如何删除索引

删除MySQL索引可用DROPINDEX或ALTERTABLE;普通索引用DROPINDEXindex_nameONtable_name;主键需用ALTERTABLEtable_nameDROPPRI......

11