标签:数据 ase 时间 根据 datatime creat sch 字段 删除
create database 库名; -- 建库
create database if not exists 库名; -- 先判断数据库是否存在,没有再建库
create database 库名 character set 编码格式; -- 建库同时设置库的编码
例如:create database if not exist school character set utf8;
drop database 库名; -- 删库
drop database if exists 库名; -- 先判断数据库是否存在,存在则删除
注:
1、delete from 表名; 删除表中所有数据 ,将表中记录逐条删除,性能低,如果表中有自增长的主键,那么删除数据不会影响主键的自增长
2、truncate table 表名; 删除表中所有数据,直接一次性的将整个表删除,重新创建一个新的相同结构的表,会将主键自增长清零
标签:数据 ase 时间 根据 datatime creat sch 字段 删除
原文地址:https://www.cnblogs.com/demonycw/p/11329501.html