ctype_cp1251.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. SET NAMES cp1251;
  3. create table t1 (a varchar(10) not null) character set cp1251;
  4. insert into t1 values ("a"),("ab"),("abc");
  5. select * from t1;
  6. a
  7. a
  8. ab
  9. abc
  10. select a, left(a,1) as b from t1;
  11. a b
  12. a a
  13. ab a
  14. abc a
  15. select a, left(a,1) as b from t1 group by a;
  16. a b
  17. a a
  18. ab a
  19. abc a
  20. SELECT DISTINCT RIGHT(a,1) from t1;
  21. RIGHT(a,1)
  22. a
  23. b
  24. c
  25. drop table t1;
  26. create table t1 (a char(15) binary, b binary(15)) character set cp1251;
  27. insert into t1 values ('aaa','bbb'),('AAA','BBB');
  28. select upper(a),upper(b) from t1;
  29. upper(a) upper(b)
  30. AAA bbb
  31. AAA BBB
  32. select lower(a),lower(b) from t1;
  33. lower(a) lower(b)
  34. aaa bbb
  35. aaa BBB
  36. select * from t1 where upper(a)='AAA';
  37. a b
  38. aaa bbb
  39. AAA BBB
  40. select * from t1 where lower(a)='aaa';
  41. a b
  42. aaa bbb
  43. AAA BBB
  44. select * from t1 where upper(b)='BBB';
  45. a b
  46. AAA BBB
  47. select * from t1 where lower(b)='bbb';
  48. a b
  49. aaa bbb
  50. select charset(a), charset(b), charset(binary 'ccc') from t1 limit 1;
  51. charset(a) charset(b) charset(binary 'ccc')
  52. cp1251 binary binary
  53. select collation(a), collation(b), collation(binary 'ccc') from t1 limit 1;
  54. collation(a) collation(b) collation(binary 'ccc')
  55. cp1251_bin binary binary
  56. drop table t1;
  57. create table t1 (
  58. a varchar(16) character set cp1251 collate cp1251_bin not null,
  59. b int(10) default null,
  60. primary key(a)
  61. ) charset=cp1251;
  62. insert into t1 (a) values ('air'),
  63. ('we'),('g'),('we_toshko'), ('s0urce'),('we_ivo'),('we_iliyan'),
  64. ('we_martin'),('vw_grado'),('vw_vasko'),('tn_vili'),('tn_kalina'),
  65. ('tn_fakira'),('vw_silvia'),('vw_starshi'),('vw_geo'),('vw_b0x1');
  66. select * from t1 where a like 'we_%';
  67. a b
  68. we_iliyan NULL
  69. we_ivo NULL
  70. we_martin NULL
  71. we_toshko NULL
  72. drop table t1;