码迷,mamicode.com
首页 > 数据库 > 详细

mysql学习记录(二)

时间:2016-04-23 19:49:08      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:

一、索引

  创建: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

mysql学习记录(二)

标签:

原文地址:http://www.cnblogs.com/begin-zero/p/5425160.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!