常用SQL語句

2022-06-01 06:45:08 字數 613 閱讀 4217

#mysql查詢一張表所有的字段,逗號隔開 

select group_concat(column_name) from information_schema.columns where table_name= '你的表名'

#mysql查詢一張表所有的欄位名稱

select column_name, column_comment from information_schema.columns where table_name='你的表名'

#使用 explain(desc) 檢視 sql 是如何執行查詢語句的,從而分析你的索引是否滿足需求

explain select * from table where type=1

#檢視當前所有連線資訊。

show processlist

#查詢指定表的建立時間

select create_time from information_schema.tables where table_schema='資料庫名稱' and table_name='表名稱';

sql常用sql語句

1 查詢某個庫中所有的表名字 select name from sysobjects where xtype u and name dtproperties order by name 2 得到資料庫中所有使用者檢視 select name from sysobjects where xtype v...

常用sql語句

t sql語句複製表的方法 我在sql server 2000中有現個資料庫datahr及demo,它們的結構是一樣,其它有乙個表名為 gbitem.現在我想將demo資料庫的表名 gbitem的全部內容複製到datahr資料庫的表名為 gbitem中。請問此t sql語句應該怎麼寫?謝謝高人指點!...

常用SQL語句

查詢 sp who 中的結果值。因為儲存過程不能查詢,先轉為臨時表再查詢。declare tb table spid varchar 100 ecid varchar 100 status varchar 100 loginame varchar 100 hostname varchar 100 b...