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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1,t2,t3,t4;
  2. drop table if exists t0,t5,t6,t7,t8,t9;
  3. drop database if exists mysqltest;
  4. create table T1 (id int primary key, Word varchar(40) not null, Index(Word));
  5. create table t4 (id int primary key, Word varchar(40) not null);
  6. INSERT INTO T1 VALUES (1, 'a'), (2, 'b'), (3, 'c');
  7. INSERT INTO T4 VALUES(1,'match');
  8. SELECT * FROM t1;
  9. id Word
  10. 1 a
  11. 2 b
  12. 3 c
  13. SELECT T1.id from T1 LIMIT 1;
  14. id
  15. 1
  16. SELECT T2.id from t1 as T2 LIMIT 1;
  17. id
  18. 1
  19. SELECT * from t1 left join t4 on (test.t1.id= TEST.t4.id) where TEST.t1.id >= test.t4.id;
  20. id Word id Word
  21. 1 a 1 match
  22. SELECT T2.id from t1 as t2 LIMIT 1;
  23. id
  24. 1
  25. RENAME TABLE T1 TO T2;
  26. ALTER TABLE T2 ADD new_col int not null;
  27. ALTER TABLE T2 RENAME T3;
  28. show tables like 't_';
  29. Tables_in_test (t_)
  30. t3
  31. t4
  32. drop table t3,t4;
  33. create table t1 (a int);
  34. select count(*) from T1;
  35. count(*)
  36. 0
  37. select count(*) from t1;
  38. count(*)
  39. 0
  40. select count(T1.a) from t1;
  41. count(T1.a)
  42. 0
  43. select count(bags.a) from t1 as Bags;
  44. count(bags.a)
  45. 0
  46. drop table t1;
  47. create database mysqltest;
  48. use MYSQLTEST;
  49. create table t1 (a int);
  50. select T1.a from MYSQLTEST.T1;
  51. a
  52. select t1.a from MYSQLTEST.T1;
  53. a
  54. select mysqltest.t1.* from MYSQLTEST.t1;
  55. a
  56. select MYSQLTEST.t1.* from MYSQLTEST.t1;
  57. a
  58. select MYSQLTEST.T1.* from MYSQLTEST.T1;
  59. a
  60. select MYSQLTEST.T1.* from T1;
  61. a
  62. alter table t1 rename to T1;
  63. select MYSQLTEST.t1.* from MYSQLTEST.t1;
  64. a
  65. drop database mysqltest;
  66. use test;
  67. create table t1 (a int);
  68. create table t2 (a int);
  69. delete p1.*,P2.* from t1 as p1, t2 as p2 where p1.a=P2.a;
  70. delete P1.*,p2.* from t1 as P1, t2 as P2 where P1.a=p2.a;
  71. update t1 as p1, t2 as p2 SET p1.a=1,P2.a=1 where p1.a=P2.a;
  72. update t1 as P1, t2 as P2 SET P1.a=1,p2.a=1 where P1.a=p2.a;
  73. drop table t1,t2;
  74. create table t1 (a int);
  75. create table t2 (a int);
  76. select * from t1 c, t2 C;
  77. ERROR 42000: Not unique table/alias: 'C'
  78. select C.a, c.a from t1 c, t2 C;
  79. ERROR 42000: Not unique table/alias: 'C'
  80. drop table t1, t2;
  81. create table t1 (a int);
  82. create table t2 like T1;
  83. drop table t1, t2;
  84. show tables;
  85. Tables_in_test