mysql show 語句用法
2009-05-08 15:08
show 可以以各種形式描述
資料庫系統的資訊,諸如資料表,字段,伺服器狀態等等。大致有以下這些方法:show [full] columns from tbl_name [from db_name] [like 'pattern'] \\顯示表的字段定義
show create database db_name \\顯示資料庫定義
show create table tbl_name \\顯示表定義
show databases [like 'pattern'] \\顯示資料庫列表
show [storage] engines \\顯示儲存引擎的支援情況
show errors [limit [offset,] row_count] \\顯示最後乙個執行語句所產生的錯誤
show grants for user \\顯示使用者的許可權
show index from tbl_name [from db_name] \\顯示表索引列表
show innodb status \\顯示innodb儲存引擎的狀態
show [bdb] logs \\顯示bdb儲存引擎的
日誌
show privileges \\顯示支援的許可權及定義
show [full] processlist \\顯示系統中正在執行的所有程序,也就是當前正在執行的查詢
show status [like 'pattern'] \\顯示一些系統特定資源的資訊,例如,正在執行的執行緒數量
show table status [from db_name] [like 'pattern'] \\顯示當前使用或者指定的database中的每個表的資訊
show [open]
tables [from db_name] [like 'pattern'] \\顯示當前database的所有表
show [global | session]
variables [like 'pattern'] \\顯示系統變數的名稱和值
show warnings [limit [offset,] row_count] \\顯示最後乙個執行的語句所產生的錯誤、警告和通知
C new 用法說明
int a newint 這句相當於 int a 0 a 是空 int a new int 20 這句的本質是指標指向乙個 int20 的空間 在堆裡 這個與class 類似的。1 new運算子 用於建立物件和呼叫建構函式。這種大家都比較熟悉,沒什麼好說的了。2 new修飾符 在用作修飾符時,new...
SQLSERVER DBCC 用法說明
一 dbcc 幫助類命令 dbcc help 查詢所有的dbcc命令 dbcc help 命令 查詢指定的dbcc命令的語法說明 dbcc useroptions 返回當前連線的活動 設定 的set選項 二 dbcc 檢查驗證類命令 dbcc checkalloc 資料庫名稱 檢查指定資料庫的磁碟空...
linux c setitimer用法說明
在linux c程式設計中,setitimer是乙個比較常用的函式,可用來實現延時和定時的功能。使用時需要引入的標頭檔案 cpp view plain copy include setitimer函式原型 cpp view plain copy intsetitimer intwhich,const...