進行開發時常用命令一次性輸入:
set autocommit=0;
set session transaction isolation level read committed;
set global binlog_format = 'row';
事務級別
1.檢視當前會話隔離級別 select @@tx_isolation;
2.檢視系統當前隔離級別 select @@global.tx_isolation;
3.設定當前會話隔離級別 set session transaction isolation level read committed;
4.設定系統當前隔離級別 set global transaction isolation level read committed;
自動提交
select @@autocommit; //查詢
my.cnf詳解
binary log 整理:
組合索引**
常用工具
技巧:current_date 這種「看似」常量的資料,其實是影響sql進行快取的,所以併發量大的場景,可以考慮以乙個常量,每天0點更新獲取current_date快取起來
檢視表所佔空間:
//先進去mysql自帶管理庫:information_schema
//自己的資料庫:dbwww58com_kuchecarlib
//自己的表:t_carmodelparamvalue
.mysql> select concat(round(sum(data_length/1024/1024),2),'mb') as data_length_mb,
concat(round(sum(index_length/1024/1024),2),'mb') as index_length_mb
from tables where
table_schema='dbwww58com_kuchecarlib'
and table_name = 't_carmodelparamvalue';
查詢快取配置引數:
show variables like '%cache%';
查詢快取命中狀態:
show status like '%qcache%';
mysql常用指令 Mysql常用指令
mysql常用指令2021 01 19 23 40 45 作用 去除select 查詢出來的結果中重複的資料,重複資料只展示一列.關鍵字 distinct 用法 select distinct source from student table source 去重的字段條件 student tabl...
adb 常用指令記錄
截圖 adb shell screencap p sdcard screen.png 啟動乙個activity adb shell am start n com.mediatek.mtklogger mainactivity 傳送廣播 adb shell am broadcast a send by...
Linux常用指令記錄
1.刪除指令 rmdir test 刪除空資料夾 rm test.txt 刪除檔案 rm rf test 刪除目錄以及其下所有檔案 資料夾 2.建立檔案和目錄 touch test 建立二進位制檔案 mkdir test 建立資料夾 vi test.txt 建立檔案 mkdir p bbb test...