DDL:操作数据库
查询: show databases;-- 显示所有数据库
select database();-- 查询当前所使用的数据库
创建:creat database 数据库名 ;
creat database if not exists 数据库名;-- 在创建前查询该数据库是否不存在
删除:drop database 数据库名;
drop database if exists 数据库名;-- 在删除前查询该数据库是否已存在
使用:use 数据库名;
标签:02,Web,Java,database,--,数据库,查询 From: https://www.cnblogs.com/jy-all-bug/p/16777457.html