[mysql] 取得資料庫內所有欲刪除表格

[mysql] 取得資料庫內所有欲刪除表格

  • 純粹得到 drop table xxxx,並沒有執行刪除指令
  • SELECT concat('DROP TABLE IF EXISTS `', table_name, '`;')
    FROM information_schema.tables
    WHERE table_schema = credit_system