flush_block_commit.result

来自「这是linux下运行的mysql软件包,可用于linux 下安装 php + m」· RESULT 代码 · 共 55 行

RESULT
55
字号
drop table if exists t1;create table t1 (a int) engine=innodb;begin;insert into t1 values(1);flush tables with read lock;select * from t1;a commit;select * from t1;aunlock tables;begin;select * from t1 for update;a1begin; select * from t1 for update; flush tables with read lock;commit;a1unlock tables;commit;begin;insert into t1 values(10);flush tables with read lock;commit;unlock tables;flush tables with read lock;unlock tables;begin;select * from t1;a110show create database test;Database	Create Databasetest	CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET latin1 */drop table t1;create table t1 (a int) engine=innodb;reset master;set autocommit=0;insert t1 values (1);flush tables with read lock;show master status;File	Position	Binlog_Do_DB	Binlog_Ignore_DBmaster-bin.000001	98		 commit;show master status;File	Position	Binlog_Do_DB	Binlog_Ignore_DBmaster-bin.000001	98		unlock tables;drop table t1;set autocommit=1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?