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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. drop database if exists mysqltest;
  3. drop table if exists t1;
  4. drop database if exists mysqltest;
  5. create database mysqltest;
  6. create database mysqltest;
  7. create table mysqltest.t1 (a int primary key, b int) engine=ndb;
  8. use mysqltest;
  9. show tables;
  10. Tables_in_mysqltest
  11. t1
  12. drop database mysqltest;
  13. use mysqltest;
  14. show tables;
  15. Tables_in_mysqltest
  16. create database mysqltest;
  17. create table mysqltest.t1 (c int, d int primary key) engine=ndb;
  18. use mysqltest;
  19. show tables;
  20. Tables_in_mysqltest
  21. t1
  22. drop database mysqltest;
  23. use mysqltest;
  24. show tables;
  25. Tables_in_mysqltest
  26. drop table if exists t1;
  27. drop database if exists mysqltest;