text.out
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. QUERY: SELECT 'this is a text string'::text = 'this is a text string'::text AS true;
  2. true
  3. ----
  4. t   
  5. (1 row)
  6. QUERY: SELECT 'this is a text string'::text = 'this is a text strin'::text AS false;
  7. false
  8. -----
  9. f    
  10. (1 row)
  11. QUERY: CREATE TABLE TEXT_TBL (f1 text);
  12. QUERY: INSERT INTO TEXT_TBL VALUES ('doh!');
  13. QUERY: INSERT INTO TEXT_TBL VALUES ('hi de ho neighbor');
  14. QUERY: SELECT '' AS two, * FROM TEXT_TBL;
  15. two|f1               
  16. ---+-----------------
  17.    |doh!             
  18.    |hi de ho neighbor
  19. (2 rows)