mysql常用查詢

2021-08-25 08:06:27 字數 545 閱讀 3762

1.檢視鎖死的表:

show open tables where in_use > 0; 

2.檢視程序:

show processlist

3、解鎖

第一種:

show processlist;

找到鎖程序,kill id ;

第二種:

mysql>unlock tables;

4、鎖表

鎖定資料表,避免在備份過程中,表被更新

mysql>lock tables tbl_name read;

為表增加乙個寫鎖定:

mysql>lock tables tbl_name write;

5、 檢視當前的事務

select * from information_schema.innodb_trx
select * from information_schema.innodb_locks
select * from information_schema.innodb_lock_waits

mysql 查詢 常用 mysql常用查詢

一.group concat函式,以指定的分割符合並列,與group by 一起用 例 selectgroup concat c.columnname separator group by 二.preparedstatement.return generated keys 得到剛剛插入記錄的id p...

mysql常用的查詢 MySQL常用查詢

資料庫 1.查詢所有資料的大小 data length 資料大小 index length 索引大小 select concat round sum data length index length 1024 1024,2 mb as data from information schema.tab...

mysql常用的查詢 MySQL常用查詢

select from unixtime create time,y m as time,sum sales amount sales amount sum from sales group by time 執行結果如下 查詢每年的銷售額 select from unixtime create ti...