MySql 语法细节补充
时间:2014-06-25 23:55:37
收藏:0
阅读:329
一、注释:
1.单行注释#开始到行结束。
2.多行注释/* ... */。
二、数据库存在性判断:
1.例如:如果数据库存在则删除
drop database if exists 数据库名;
2.例如:如果数据库不存在则创建
create database if not exists 数据库名;
评论(0)