ndb_database.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:
MySQL数据库
开发平台:
Visual C++
- drop table if exists t1;
- drop database if exists mysqltest;
- drop table if exists t1;
- drop database if exists mysqltest;
- create database mysqltest;
- create database mysqltest;
- create table mysqltest.t1 (a int primary key, b int) engine=ndb;
- use mysqltest;
- show tables;
- Tables_in_mysqltest
- t1
- drop database mysqltest;
- use mysqltest;
- show tables;
- Tables_in_mysqltest
- create database mysqltest;
- create table mysqltest.t1 (c int, d int primary key) engine=ndb;
- use mysqltest;
- show tables;
- Tables_in_mysqltest
- t1
- drop database mysqltest;
- use mysqltest;
- show tables;
- Tables_in_mysqltest
- drop table if exists t1;
- drop database if exists mysqltest;