quote.sql
来自「关系型数据库 Postgresql 6.5.2」· SQL 代码 · 共 19 行
SQL
19 行
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 + =
减小字号Ctrl + -
显示快捷键?