📄 quote.sql
字号:
create table quoteTBL (f text);insert into quoteTBL values ('hello world');insert into quoteTBL values ('hello '' world');insert into quoteTBL values ('hello \' world');insert into quoteTBL values ('hello \\ world');insert into quoteTBL values ('hello \t world');insert into quoteTBL values ('helloworldwith newlines');insert into quoteTBL values ('hello " world');insert into quoteTBL values (''); -- bad escape sequence insert into quoteTBL values ('hello \y world'); select * from quoteTBL;drop table quoteTBL;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -