⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 text.sql

📁 关系型数据库 Postgresql 6.5.2
💻 SQL
字号:
-- *************testing built-in type text  ****************SELECT 'this is a text string'::text = 'this is a text string'::text AS true;SELECT 'this is a text string'::text = 'this is a text strin'::text AS false;CREATE TABLE TEXT_TBL (f1 text);INSERT INTO TEXT_TBL VALUES ('doh!');INSERT INTO TEXT_TBL VALUES ('hi de ho neighbor');SELECT '' AS two, * FROM TEXT_TBL;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -