【oracle】查询表的相关信息

前端之家收集整理的这篇文章主要介绍了【oracle】查询表的相关信息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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'; ----不能使用双引号,且表名称要大写
原文链接:https://www.f2er.com/oracle/213084.html

猜你在找的Oracle相关文章