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

8.5 SQL关系操作Day24

时间:2016-08-06 20:28:59      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

---note---

select 查询

Create, Drop, Alter  定义

Insert, Update, Delete  操作

Grant, Revoke  控制

 授权  回收

 

内模式(储存文件的逻辑结构)

外模式  对应于视图和基本表(部分)

模式     对应于基本表

 

表 Create  Drop  alter

   Table   table    table

not null  null

primary key

unique

 

Create table student (

  Sno char(5) not null unique,

  Sname char(20) unique,

  Ssex char(1),

  Sage int,

  Sdept char(15)  );

 

Create index on

 

  升序:ASC  降序:DESC

Cluster 聚簇索引

Create unique index student on

Create unique index SCno on SC(Sno ASC,Cno DESC)

 

对于已含重复值的属性列不能建unique索引

 

Create Cluster index stusname on student(Sname)

Drop index stusname (删除student表的stusname)

 

查询:select

更新:insert

删除:delete

修改:update

 

primary key (Sno,Cno)

foreign key (Sno) references

---note---

8.5 SQL关系操作Day24

标签:

原文地址:http://www.cnblogs.com/Dying39/p/5744739.html

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