csql10.sql

来自「b树实现源码,linux和unix下运行,速度快,极好用」· SQL 代码 · 共 27 行

SQL
27
字号
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 + =
减小字号Ctrl + -
显示快捷键?