第1节-MySQL创建表、数据库、查看MySQL引擎

1、查看MySQL支持的存储引擎

show engines;

2、查看默认引擎

show variables like '%storage_engine%';

3、创建数据库

create database temp_db;

4、创建数据库,创建前判断数据库是否存在

create database if not exists temp_db;

5、创建数据库并且设置默认字符集和排序规则

create database test_db character set utf8 collate utf8_general_ci;

6、删除数据库

drop database temp_db;

7、查询数据库的存储位置

show variables like '%datadir%';

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 




 

posted @ 2022-12-31 15:16  小粉优化大师  阅读(59)  评论(0编辑  收藏  举报