--
查詢某欄位型別
select information_schema.columns.data_typeinto :ls_type
from information_schema.columns
where ( information_schema.columns.table_name = 『tablename』) and
( information_schema.columns.column_name = :as_column ) ;
--查詢某資料庫中所有表
select table_name from information_schema.tables where table_catalog = 'dbname'
--查詢某資料表中所有字段、型別
select column_name,data_type from information_schema.columns where information_schema.columns.table_name = 'tablename'
SQLSERVER 查詢資料庫資訊
use dbname 檢視表所有字段 select from syscolumns where id object id 表名 order by id select from sysobjects where xtype u goxtype可替換為如下引數 c check 約束 d 預設值或 def...
mysql查詢資料庫檔案資訊 查詢資料庫資訊
select a.name 檔名稱 cast a.size 1.0 128 as decimal 12,1 as 檔案設定大小 mb cast fileproperty s.name,spaceused 8 16.0 as decimal 12,1 as 檔案所佔空間 mb cast filepro...
查詢資料庫中表資訊等
有時候需要匯出某使用者下的所有table view sequence trigger等資訊,下面的sql可以將這些資訊select出來 select from user tables select from user views select from user sequences select f...