oracle 获取表的注释
时间: 2023-09-27 22:06:32 浏览: 58
Oracle 查询表信息获取表字段及字段注释
您可以使用以下 SQL 查询来获取表的注释:
```sql
SELECT comments
FROM user_tab_comments
WHERE table_name = 'your_table_name';
```
这将返回指定表的注释信息。如果您想要查询其他用户的表,请使用 `all_tab_comments` 视图代替 `user_tab_comments` 视图。
阅读全文