1、查詢當前資料庫下所有使用者建立的表
select * from sysobjects where (xtype = 'u')
2、查詢當前資料庫下所有使用者建立的儲存
select * from sysobjects where (xtype = 'p')
解釋xtype引數的含義
c = check 約束
d = 預設值或 default 約束
f = foreign key 約束
l = 日誌
fn = 標量函式
if = 內嵌表函式
p = 儲存過程
pk = primary key 約束(型別是 k)
rf = 複製篩選儲存過程
s = 系統表
tf = 表函式
tr = 觸發器
u = 使用者表
uq = unique 約束(型別是 k)
v = 檢視
x = 擴充套件儲存過程
3、建立sp_find 儲存用方便查詢表或儲存
creat procedure sp_find
@table varchar(115)
a***ec ('select *from sysobjects where name like "%+'@table'+%" order by type desc ,name ')
SQL學習(基礎)
sql簡介 是一種結構化查詢語言 structured query language 用於訪問和處理資料庫的標準的計算機語言。sql的作用 create select insert update delete drop 1 sql 面向資料庫執行查詢 2 sql 可從資料庫取回資料 3 sql 可在...
SQL基礎學習
order by排序語句 select limit子句 select 語句用於從資料庫中選取資料。結果被儲存在乙個結果表中,稱為結果集。sql select 語法 選取table中列為為column name的列 select column name,column name from table n...
SQL學習筆記 基礎SQL語句
andornot 邏輯運算子 order by 排序 基本修改語句 每一句結尾都有 所以注意換行,來增加可讀性。大小寫不敏感。命令一般全大寫,便於區分。當遇到差異的時候,以mysql為基礎進行筆記整理 選擇資料庫 use name 設定字符集 set names 字元編碼方式 select colu...