-
Notifications
You must be signed in to change notification settings - Fork 14
/
new_database.result
37 lines (37 loc) · 1.16 KB
/
new_database.result
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
drop database if exists test01;
drop database if exists test03;
drop database if exists test04;
drop database if exists test05;
drop database if exists `测试数据库`;
create database test01;
create database IF NOT EXISTS test01;
create database `测试数据库`;
create database test03 default character set utf8 collate utf8_general_ci encryption 'Y';
create database test04 character set=utf8 collate=utf8_general_ci encryption='N';
show databases;
Databases
create_database
test01
测试数据库
test03
test04
drop database if exists test01;
drop database if exists test03;
drop database if exists test04;
drop database if exists test05;
drop database if exists `测试数据库`;
drop database if exists ABCDE;
drop database if exists abcde;
drop database if exists db_with_no_tables_and_an_unrelated_file_in_data_directory;
create database ABCDE;
create database abcde;
create database db_with_no_tables_and_an_unrelated_file_in_data_directory;
show databases;
Databases
create_database
ABCDE
abcde
db_with_no_tables_and_an_unrelated_file_in_data_directory
drop database ABCDE;
drop database abcde;
drop database db_with_no_tables_and_an_unrelated_file_in_data_directory;