oracle 查询存储过程语句
如何使用sql语句,查询oracle的表注释等信息?
如何使用sql语句,查询oracle的表注释等信息?
Oracle 下读取表/字段的备注信息
Oracle 通过COMMENT ON TABLE / COMMENT ON COLUMN 追加表/字段的备注。
CREATE TABLE
oracle怎么通过sql查看表的结构?
利用sql语句查询某个表的结构的方法:
通过Oracle中的user_tab_cols, user_col_comments, user_constraints, user_cons_columns表联合查询。 1、user_tab_cols用来获取对应用户表的列信息; 2、user_col_comments用来获取对应用户表列的注释信息; 3、user_constraints用来获取用户表的约束条件; 4、user_cons_columns约束中用户可访问列。
示例代码:
select _name, _name, _type, _length, , _id, , (SELECT CASE WHEN _name _name THEN 1 ELSE 0 END FROM DUAL) iskey FROM user_tab_cols t, user_col_comments c, (select _name from user_constraints s, user_cons_columns m where lower(_name) qh_outstoresabinfo and _name _name and _name _name and _type P) m WHERE lower(_name) qh_outstoresabinfo and _name _name and _name _name and t.hidden_column NO order by _id