blob: 4167119d93272a8d820b77dbb572b516a3507bcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
drop database if exists mysqltest1;
create schema foo;
show create schema foo;
Database Create Database
foo CREATE DATABASE `foo` /*!40100 DEFAULT CHARACTER SET latin1 */
create table t1 (id int) engine=pbxt;
show schemas;
Database
information_schema
foo
mtr
mysql
pbxt
test
drop schema foo;
|