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

数据库系统

开发平台:

Unix_Linux

  1. -- *************testing built-in type text  ****************
  2. SELECT 'this is a text string'::text = 'this is a text string'::text AS true;
  3. SELECT 'this is a text string'::text = 'this is a text strin'::text AS false;
  4. CREATE TABLE TEXT_TBL (f1 text);
  5. INSERT INTO TEXT_TBL VALUES ('doh!');
  6. INSERT INTO TEXT_TBL VALUES ('hi de ho neighbor');
  7. SELECT '' AS two, * FROM TEXT_TBL;