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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. CREATE TABLE t1 (id CHAR(12) not null, PRIMARY KEY (id));
  3. insert into t1 values ('000000000001'),('000000000002');
  4. explain select * from t1 where id=000000000001;
  5. id select_type table type possible_keys key key_len ref rows Extra
  6. 1 SIMPLE t1 index PRIMARY PRIMARY 12 NULL 2 Using where; Using index
  7. select * from t1 where id=000000000001;
  8. id
  9. 000000000001
  10. delete from t1 where id=000000000002;
  11. select * from t1;
  12. id
  13. 000000000001
  14. drop table t1;
  15. SELECT 'a' = 'a ';
  16. 'a' = 'a '
  17. 1
  18. SELECT 'a' < 'a';
  19. 'a' < 'a'
  20. 1
  21. SELECT 'a' < 'a ';
  22. 'a' < 'a '
  23. 1
  24. SELECT 'at' < 'a';
  25. 'at' < 'a'
  26. 1
  27. SELECT 'at' < 'a ';
  28. 'at' < 'a '
  29. 1
  30. CREATE TABLE t1 (a char(10) not null);
  31. INSERT INTO t1 VALUES ('a'),('a'),('at'),('a ');
  32. SELECT hex(a),STRCMP(a,'a'), STRCMP(a,'a ') FROM t1;
  33. hex(a) STRCMP(a,'a') STRCMP(a,'a ')
  34. 61 0 0
  35. 6100 -1 -1
  36. 6109 -1 -1
  37. 61 0 0
  38. DROP TABLE t1;
  39. SELECT CHAR(31) = '', '' = CHAR(31);
  40. CHAR(31) = '' '' = CHAR(31)
  41. 0 0
  42. SELECT CHAR(30) = '', '' = CHAR(30);
  43. CHAR(30) = '' '' = CHAR(30)
  44. 0 0