mariadb/mysql-test/r/schema.result
2006-03-01 13:31:21 +01:00

13 lines
253 B
Text

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
cluster
foo
mysql
test
drop schema foo;