📄 csql10.sql
字号:
echo Description: SET TRANSACTION type testcreate table t1 (f1 int, f2 char(10), f3 int, primary key (f1));echo check default transaction typeinsert into t1 values (10, '20', 10);insert into t1 values (11, '21', 11);echo check read only typeset transaction read only;insert into t1 values (11, '21', 11);update set t2='a' where f1 = 10;delete from t1 where f1 = 11;select * from t1;echo check read write typeinsert into t1 values (50, '50', 50);update set t2='a' where f1 = 10;delete from t1 where f1 = 11;select * from t1;echo check read only typeset transaction read only;insert into t1 values (11, '21', 11);update set t2='a' where f1 = 10;delete from t1 where f1 = 11;select * from t1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -