close
在MySQL中,如何判斷某表是否存在
方法1
SHOW TABLES LIKE '%tb_bp_d_case% '
方法2
select table_name, table_schema
from tables
where
table_name = '資料表名稱' and table_schema= '資料庫名稱'
全站熱搜
在MySQL中,如何判斷某表是否存在
方法1
SHOW TABLES LIKE '%tb_bp_d_case% '
方法2
select table_name, table_schema
from tables
where
table_name = '資料表名稱' and table_schema= '資料庫名稱'
留言列表