select distinct tablespace_name from all_tables group by tablespace_name
时间: 2024-04-12 16:27:23 浏览: 112
select distinct用法
在 SQL 中,你的查询语句是有问题的。你不能在使用 `GROUP BY` 之前使用 `DISTINCT` 关键字。如果你想获取所有表的唯一的 `tablespace_name`,你可以使用以下查询语句:
```sql
SELECT DISTINCT tablespace_name
FROM all_tables;
```
这个查询语句将返回 `all_tables` 表中唯一的 `tablespace_name` 值。每个不同的 `tablespace_name` 将作为结果返回,重复的值将被过滤掉。
阅读全文