MySql 语法细节补充

一、注释:

  1.单行注释#开始到行结束。

  2.多行注释/* ...  */。

二、数据库存在性判断:

  1.例如:如果数据库存在则删除

      drop database if exists 数据库名;

  2.例如:如果数据库不存在则创建

      create database if not exists 数据库名;

 

posted @ 2014-06-23 17:38  刘 明  阅读(108)  评论(0编辑  收藏  举报