加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

【oracle】查询表的相关信息

发布时间:2020-12-12 16:07:37 所属栏目:百科 来源:网络整理
导读:1.oracle 中查询表的各个字段 ,字段数据类型,字段长度,数据精度等 sql : select column_name,data_type,data_length,data_precision,data_scale from user_tab_columns where table_name= [tableName]; i.e : 查询 vst_test 表的各种信息 select column_n

1.oracle 中查询表的各个字段 ,字段数据类型,字段长度,数据精度等


sql :

select column_name,data_type,data_length,data_precision,data_scale 
from user_tab_columns where table_name= [tableName]; 

i.e : 查询 vst_test 表的各种信息
select column_name,data_scale 
from user_tab_columns where table_name= 'VST_test'; ----不能使用双引号,且表名称要大写

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读