--创建一个mytest数据库
create database mytest;
--删除一个mytest1数据库
drop database mytest1;
--使用这个数据库
use mytest;
--在这个数据库中创建一个websites表
create table websites(
site_id INT NOT NULL AUTO_INCREMENT...
原文链接:https://www.cnblogs.com/xiejava/p/15541899.html一、查看系统版本[root@localhost ~]# cat /etc/centos-release
CentOS Linux release 7.2.1511 (Core)[root@localhost ~]# uname -a
Linux localhost.localdomain ...