blob: 402d3e1d98715741bd826595f44771f1bb119662 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
drop database if exists mysqltest1;
create schema foo;
show create schema foo;
Database Create Database
foo CREATE DATABASE `foo` /*!40100 DEFAULT CHARACTER SET latin1 */
show schemas;
Database
information_schema
foo
mtr
mysql
performance_schema
test
drop schema foo;
|