group_concat(table_name),3,4 from information_schema.tables where table_schema=database(
时间: 2024-09-13 14:18:16 浏览: 78
1. 基础信息1
`group_concat()` 是 SQL 中的一个聚合函数,它用于将指定列中的数据连接成一个字符串列表,每个值之间由指定的分隔符隔开。在这个上下文中,`table_name, 3, 4` 指定的是需要连接的列名,`information_schema.tables` 是系统表,通常用于查询数据库的信息。
当你看到 `from information_schema.tables where table_schema=database()` 这部分,这表示你想从 `information_schema` 数据库的 `tables` 表中获取信息,但是你需要提供实际的数据库名(即 `database()` 函数应该替换为具体的数据库名称),因为这个函数通常返回当前正在使用的数据库。
完整的查询可能是这样的:
```sql
SELECT group_concat(table_name) AS concatenated_table_names,
group_concat(column_name, ', ') AS concatenated_columns_3_and_4
FROM information_schema.tables
WHERE table_schema = 'your_database_name'
AND (column_name IN ('3', '4'))
```
这里假设你对 `table_name` 列、'3' 和 '4' 列感兴趣,并且想在一个结果集中看到这两列的组合。如果 `database()` 不是一个有效的函数,你需要将其替换为你实际数据库的名字。
阅读全文