oracle 查询表名以及表的列名建站知识
导读:1建站知识oracle 查询表名以及表的列名的代码。网站建设哪家好公司网站建设。
1.查询表名:
复制代码 代码如下:
select table_name,tablespace_name,temporary from user_tables [where table_name=表名]
其中:table_name:表名(varchar2(30)); tablespace_name:存储表名的表空间(varchar2(30)); temporary:是否为临时表(varchar2(1))。 eg: select table_name,tablespace_name,temporary from user_tables where table_name='TEST_TEMP'; 结果: ------------------------------------------------------------企业网站建设-------------------- table_name tablespace_name temporary TEST_TEMP SDMP N -------------------------------------------------------------------------------- 注:表名变量值必须大写。 2.查询表列名:复制代码 代码如下:
select column_name,data_type ,data_length,data_precision,data_scale from user_tab_columns [where table_name=表名];
其中:column_name:列名(varchar2(30)); data_type:列的数据类型(varchar2(106)); data_length:列的长度(number); eg:select column_name,data_type ,data_length,data_precision,data_scale from user_tab_columns where table_name='TEST_TEMP'; 结果: -------------------------------------------------------------------------------- column_name百度seo网站优化 data_type data_length data_precision data_scale ID NUMBER 22 0 NAME NVARCHAR2 20 SEX CHAR 1 GRADE NVARCHAR2 10 -------------------------------------------------------------------------------- 注:表名变量值必须大写。 另外,也可以通过 all_tab_columns来获取相关表的数据。 eg:select * from all_tab_columns wher网站建设哪家好e table_name='TEST_TEMP';相关网站建设哪家好公司网站建设。声明: 本文由我的SEOUC技术文章主页发布于:2023-05-24 ,文章oracle 查询表名以及表的列名建站知识主要讲述标签,标题,oracle 查询表名以及表的列名建站知识网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_6690.html