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

📄 text.out

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻 OUT
字号:
---- TEXT--SELECT text 'this is a text string' = text 'this is a text string' AS true; true ------ t(1 row)SELECT text 'this is a text string' = text 'this is a text strin' AS false; false ------- f(1 row)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; two |        f1         -----+-------------------     | doh!     | hi de ho neighbor(2 rows)

⌨️ 快捷键说明

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