sql,SELECT table_name FROM information_schema.tables WHERE table_schema = 'your_database_name';,
`,,将
'your_database_name'` 替换为你的数据库名称。sql,SELECT table_name FROM information_schema.tables WHERE table_schema = 'your_database_name';,
`,,将
'your_database_name'` 替换为你的数据库名称。sql,SHOW TABLES;,
`,,或使用
INFORMATION_SCHEMA 数据库中的
TABLES 表:,,
`sql,SELECT table_name ,FROM information_schema.tables ,WHERE table_schema = 'your_database_name';,
``Powered By Z-BlogPHP 1.7.3