SQL查詢表,表的所有欄位名

2021-07-09 05:24:30 字數 707 閱讀 9412

sql server

檢視所有表名:

select name from sysobjects where type='u'

查詢表的所有欄位名:

select name from syscolumns where id=object_id('表名')

select * from information_schema.tables

select * from information_schema.views

select * from information_schema.columns

access

檢視所有表名:

select name from msysobjects where type=1 and flags=0

msysobjects是系統物件,預設情況是隱藏的。通過工具、選項、檢視、顯示、系統物件可以使之顯示出來。

oracle

select cname from col where tname='zw_yingyez'

select column_name from user_tab_columns where table_name='zw_yingyez'

查詢表字段數

select count(column_name) from user_tab_columns where table_name='表名';

查詢表的欄位名

select name from syscolumns where id in select id from sysobjects where type u and name 相應表名 用以上sql語句輸入相應表名就可以查到表的欄位名,對應好資料庫 查詢是否存在該錶語句 if exists sele...

查詢表的欄位名 SQL的基本查詢

基本的查詢語句 select,from語句用法,從表中選擇需要查詢的字段 常用句式 select 欄位名1 欄位名2 from 表 號代表查詢表中所有字段 除了基本查詢外,還可以將列 欄位名 在查詢時重新命名,使用as distinct 刪除重複值的資料 select distinct 姓名 fro...

獲取資料視窗所有欄位的欄位名

int li value long ll i,ll rowcount string ls usrid,ls tooltip decimal ldc lastvalue ll rowcount dw 1.rowcount if ll rowcount 0 then return int li cnt,...