DM oracle Mysql 查询数据库表和字段
select * from user_tab_comments;--查询当前用户下的所有 表select * from user_col_comments;--查询当前用户下的所有字段select * from dba_tables ;--查询数据库实例下的所有表select * from dba_tab_columns ;--查询数据库实例下所有字段select * from dba_objec
·
-----------------------------------------------------ORALCE、DM
select * from user_tab_comments;--查询当前用户下的表注释
select * from user_col_comments;--查询当前用户下的字段注释
select * from dba_tables ;--查询数据库实例下的表 属性
select * from dba_tab_columns ;--查询数据库实例下字段 属性
select * from dba_objects ;--查询数据库实例下对象
################################MYSQL
SELECT * FROM information_schema.`TABLES`;--查询表
SELECT * FROM information_schema.`COLUMNS` where table_schema='' table_name='';--查询某个表的字段信息
更多推荐
已为社区贡献2条内容
所有评论(0)