查询数据库中的表信息(包括表名称)

select
a.*, b.comments
from
user_tables a, user_tab_comments b
where
a.table_name = b.table_name
order by a.table_name;

这里写图片描述

发布了28 篇原创文章 · 获赞 2 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/u012733521/article/details/52385802
今日推荐