📄 script1
字号:
-- This is an example of last_insert_rowid()------PRAGMA synchronous=OFF;select * from test;insert into test (b) values (3);select last_insert_rowid();insert into test (b) values (last_insert_rowid() + 4);insert into test (b) values (last_insert_rowid() + 4);insert into test (b) values (last_insert_rowid() + 4);insert into test (b) values (last_insert_rowid() + 4);insert into test (b) values (last_insert_rowid() + 4);insert into test (b) values (last_insert_rowid() + 4);insert into test (b) values (last_insert_rowid() + 4);insert into test (b) values (last_insert_rowid() + 4);select case b when 1 then 'one' when 2 then 'two' else 'other' end from test;.tables.q
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -