SQL

1、创建数据库
CREATE DATABASE database-name 
2、删除数据库
drop database dbname

4、说明:创建新表
create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)

根据已有的表创建新表: 

A:create table tab_new like tab_old (使用旧表创建新表)
B:
create table tab_new as select col1,col2… from tab_old definition only
5、说明:删除新表
drop table tabname 
6、说明:增加一个列
Alter table tabname add column col type

7、说明:添加主键: 

Alter table tabname add primary key(col) 

原文地址:https://www.cnblogs.com/lqruui/p/5308214.html