java有没有办法获取oracle字段的注释
1个回答
2016-08-01 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
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
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询