一、创建数据库
1 | CREATE DATABASE IF NOT EXISTS RUNOOB DEFAULT CHARSET utf8 COLLATE utf8_general_ci; |
数据库的校验规则
utf8_bin
:将字符串中的每一个字符用二进制数据存储,大小写敏感utf8_genera_ci
:大小写不敏感(ci:case insensitive
)utf8_general_cs
:大小写敏感(cs:case sensitive
)
二、创建数据表
1 | CREATE TABLE IF NOT EXISTS `runoob_tbl`( |
ENGINE=InnoDB
:使用innodb
引擎
三、判断数据库存在, 则删除
1 | drop database if exists db_name; |
四、判断数据表存在, 则删除
1 | drop table if exists table_name; |