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

数据库系统

开发平台:

Unix_Linux

  1. drop table 寁嶼婡梡岅;
  2. create table 寁嶼婡梡岅 (梡岅 text, 暘椶僐乕僪 varchar, 旛峫1A偩傛 char(16));
  3. create index 寁嶼婡梡岅index1 on 寁嶼婡梡岅 using btree (梡岅);
  4. create index 寁嶼婡梡岅index2 on 寁嶼婡梡岅 using hash (暘椶僐乕僪);
  5. insert into 寁嶼婡梡岅 values('僐儞僺儏乕僞僨傿僗僾儗僀','婡A01忋');
  6. insert into 寁嶼婡梡岅 values('僐儞僺儏乕僞僌儔僼傿僢僋僗','暘B10拞');
  7. insert into 寁嶼婡梡岅 values('僐儞僺儏乕僞僾儘僌儔儅乕','恖Z01壓');
  8. vacuum 寁嶼婡梡岅;
  9. select * from 寁嶼婡梡岅;
  10. select * from 寁嶼婡梡岅 where 暘椶僐乕僪 = '恖Z01壓';
  11. select * from 寁嶼婡梡岅 where 暘椶僐乕僪 ~* '恖z01壓';
  12. select * from 寁嶼婡梡岅 where 暘椶僐乕僪 like '_Z01_';
  13. select * from 寁嶼婡梡岅 where 暘椶僐乕僪 like '_Z%';
  14. select * from 寁嶼婡梡岅 where 梡岅 ~ '僐儞僺儏乕僞[僨僌]';
  15. select * from 寁嶼婡梡岅 where 梡岅 ~* '僐儞僺儏乕僞[僨僌]';
  16. select *,character_length(梡岅) from 寁嶼婡梡岅;
  17. select *,octet_length(梡岅) from 寁嶼婡梡岅;
  18. select *,position('僨' in 梡岅) from 寁嶼婡梡岅;
  19. select *,substring(梡岅 from 10 for 4) from 寁嶼婡梡岅;
  20. copy 寁嶼婡梡岅 to stdout;