mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
23 lines
420 B
Plaintext
23 lines
420 B
Plaintext
DROP DATABASE IF EXISTS d6;
|
|
CREATE DATABASE d6;
|
|
SHOW DATABASES;
|
|
Database
|
|
d6
|
|
information_schema
|
|
mtr
|
|
mysql
|
|
performance_schema
|
|
sys
|
|
test
|
|
USE DATABASE nond6;
|
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'nond6' at line 1
|
|
DROP DATABASE d6;
|
|
SHOW DATABASES;
|
|
Database
|
|
information_schema
|
|
mtr
|
|
mysql
|
|
performance_schema
|
|
sys
|
|
test
|