mysql数据模型

mysql数据模型_第1张图片        创建数据库   命令 create database hellox :   ( hellox名字)

mysql数据模型_第2张图片

sql语句

mysql数据模型_第3张图片

        创建 数据库  命令  create database hell;

       也是创建但是有数据库不创建  命令 create database if not exists hell ; 

切换数据库   命令 use hello;

查询当前使用的数据库 select database();

  删除数据库     命令    drop database hell;

没有数据库不删除数据库     命令    drop database if exists hell;

你可能感兴趣的:(mysql,数据库)