标签:
一、索引
创建:create index index_name on table_name(field)
删除:drop index index_name on table_name
二、约束
create table tablename(field_name field_type {not null,unique,check(filed>0),primary key auto_increment,constraint constraint_name foreign key reference table_name(field_name)})
三、表连接
内连接:inner join table_name on condition
交叉连接:from table_name1,table_name2...
自连接、外部连接、全外部连接
四、子查询
单值子查询、列值子查询
其他
常用关键字 in,exists,or,and,between and,or,group by,where,left join table_name on condition
标签:
原文地址:http://www.cnblogs.com/begin-zero/p/5425160.html