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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. drop database if exists mysqltest;
  3. drop database if exists client_test_db;
  4. drop table t1;
  5. ERROR 42S02: Unknown table 't1'
  6. create table t1(n int);
  7. insert into t1 values(1);
  8. create temporary table t1( n int);
  9. insert into t1 values(2);
  10. create table t1(n int);
  11. ERROR 42S01: Table 't1' already exists
  12. drop table t1;
  13. select * from t1;
  14. n
  15. 1
  16. create database mysqltest;
  17. drop database if exists mysqltest;
  18. create database mysqltest;
  19. create table mysqltest.mysqltest (n int);
  20. insert into mysqltest.mysqltest values (4);
  21. select * from mysqltest.mysqltest;
  22. n
  23. 4
  24. drop database if exists mysqltest;
  25. affected rows: 1
  26. create database mysqltest;
  27. use mysqltest;
  28. drop table table1, table2, table3, table4, table5, table6,
  29. table7, table8, table9, table10, table11, table12, table13,
  30. table14, table15, table16, table17, table18, table19, table20,
  31. table21, table22, table23, table24, table25, table26, table27,
  32. table28;
  33. ERROR 42S02: Unknown table 'table1,table2,table3,table4,table5,table6,table7,table8,table9,table10,table11,table12,table13,table'
  34. drop table table1, table2, table3, table4, table5, table6,
  35. table7, table8, table9, table10, table11, table12, table13,
  36. table14, table15, table16, table17, table18, table19, table20,
  37. table21, table22, table23, table24, table25, table26, table27,
  38. table28, table29, table30;
  39. ERROR 42S02: Unknown table 'table1,table2,table3,table4,table5,table6,table7,table8,table9,table10,table11,table12,table13,table'
  40. use test;
  41. drop database mysqltest;
  42. flush tables with read lock;
  43. create database mysqltest;
  44. Got one of the listed errors
  45. unlock tables;
  46. create database mysqltest;
  47. show databases;
  48. Database
  49. mysql
  50. mysqltest
  51. test
  52. flush tables with read lock;
  53. drop database mysqltest;
  54. Got one of the listed errors
  55. unlock tables;
  56. drop database mysqltest;
  57. show databases;
  58. Database
  59. mysql
  60. test
  61. drop database mysqltest;
  62. ERROR HY000: Can't drop database 'mysqltest'; database doesn't exist
  63. drop table t1;
  64. flush tables with read lock;
  65. create table t1(n int);
  66. ERROR HY000: Can't execute the query because you have a conflicting read lock
  67. unlock tables;
  68. create table t1(n int);
  69. show tables;
  70. Tables_in_test
  71. t1
  72. drop table t1;