无法验证MySQL中是否存在表格。
尝试以下查询但没有输出。
if !(select * from information_schema.tables where table_name='sy_code')
答案 0 :(得分:0)
要查看表的架构,请使用查询
DESCRIBE table_name;
要查看数据库中的所有现有表,请使用查询
SELECT table_name FROM information_schema.tables WHERE table_schema = 'your_db'