发布时间:2024-10-03 22:50 阅读量:0 获取MySQL数据库中所有表的名称 SELECT table_name FROM information_schema.tables WHERE table_schema = 'your_database_name'; 请将 'your_database_name' 替换为你的数据库名称 示例输出格式(假设数据库中存在以下表): Table_name users orders products customers