📄 multi_statement.result
字号:
DROP TABLE IF EXISTS t1;select 1;11select 2;select 3;select 4||||223344select 5;select 6;select 50, 'abc';'abcd'556650 abc50 abcselect "abcd'";'abcd'abcd'abcd'select "'abcd";'abcd''abcd'abcdselect 5'abcd'55select 'finish';finishfinishflush status;create table t1 (i int);insert into t1 values (1);select * from t1 where i = 1;insert into t1 values (2),(3),(4);select * from t1 where i = 2;select * from t1 where i = 3||||i1i2i3show status like 'Slow_queries'||||Variable_name ValueSlow_queries 2drop table t1||||
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -