ndb_database.result
Upload User: romrleung
Upload Date: 2022-05-23
Package Size: 18897k
Code Size: 1k
Category:

MySQL

Development Platform:

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;