java有没有办法获取oracle字段的注释
答案:2 悬赏:70 手机版
解决时间 2021-02-10 06:17
- 提问者网友:沉默菋噵
- 2021-02-09 23:37
java有没有办法获取oracle字段的注释
最佳答案
- 五星知识达人网友:躲不过心动
- 2021-02-09 23:56
Oracle 使用如下SQL语句可以查询表字段的注释:
select * from user_col_comments t where 1=1
and t.comments is not null
and t.table_name = '表名'
需注意:
1、该语句仅查询当前登录用户的表或试图,不包含其他用户授权的表或试图;
2、表或试图名一定要大写。
String commentsql = "select * from user_col_comments where table_name='"+tablename+"'";
解释:列table_name中存储的是字符串,请写上单引号。
另外,请注意语句中的 user_col_commnents 和语句中的 user_col_comments
select * from user_col_comments t where 1=1
and t.comments is not null
and t.table_name = '表名'
需注意:
1、该语句仅查询当前登录用户的表或试图,不包含其他用户授权的表或试图;
2、表或试图名一定要大写。
String commentsql = "select * from user_col_comments where table_name='"+tablename+"'";
解释:列table_name中存储的是字符串,请写上单引号。
另外,请注意语句中的 user_col_commnents 和语句中的 user_col_comments
全部回答
- 1楼网友:渡鹤影
- 2021-02-10 01:04
oracle 使用如下sql语句可以查询表字段的注释:
select * from user_col_comments t where 1=1
and t.comments is not null
and t.table_name = '表名'
需注意:
1、该语句仅查询当前登录用户的表或试图,不包含其他用户授权的表或试图;
2、表或试图名一定要大写。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯