创建数据库 : create database [if not exists] 数据库名;
删除数据库 : drop database [if exists] 数据库名;
查看数据库 : show databases;
使用数据库 : use 数据库名;
MySQL数据库语句
创建数据库
create database [database name]
if we want to know if the database is exits.
create database if not exists [databases]
删除命令
drop database [database name]
# for the same reason
drop database if exists [database name]
show databases;
use test
show tables;
describe testsheet;
打印数据库
MySQL 表语句
CREATE TABLE IF NOT EXISTS `newtable`(
`id` INT(4) NOT NULL AUTO_INCREMENT COMMENT 'this is a commit of this line',
`name` VARCHAR(30) NOT NULL DEFAULT 'name_default' COMMENT 'comits ',
PRIMARY KEY(`id`)
)ENGINE=INNODB DEFAULT CHARSET=utf8