1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00
Files
mariadb/mysql-test/suite/engines/funcs/r/db_create_drop.result
2021-03-18 08:02:48 +01:00

50 lines
562 B
Plaintext

DROP DATABASE IF EXISTS d1;
CREATE DATABASE d1;
SHOW DATABASES;
Database
d1
information_schema
mtr
mysql
performance_schema
sys
test
SHOW DATABASES LIKE 'd%';
Database (d%)
d1
SHOW DATABASES LIKE '%';
Database (%)
d1
information_schema
mtr
mysql
performance_schema
sys
test
USE d1;
DROP DATABASE d1;
CREATE SCHEMA d1;
SHOW SCHEMAS;
Database
d1
information_schema
mtr
mysql
performance_schema
sys
test
SHOW SCHEMAS LIKE 'd%';
Database (d%)
d1
SHOW SCHEMAS LIKE '%';
Database (%)
d1
information_schema
mtr
mysql
performance_schema
sys
test
USE d1;
DROP SCHEMA d1;