sql学习日志1

select 
create drop alter
insert update delete
grant revoke

create schema __ drop schema __  创建模式
create table  __ drop table  __ alter table 创建删除修改表
create view   __ drop view 视图
crate index   __ drop index 索引

create schema "S-T" authorization Wang 
caeate schema authorization Wang

drop schema Wang cascade 无限制删除
cascade cascade cascade
restrict 限制

caeate table student
(Sno char(9) primary key,
Sname char(20) unique,
);

alter table Student add s_entrence date 增加属性列
alter table Student alter column Sage int 改变列的数据类型
alter table Course add unique(Cname) 增加唯一性约束

restrict

create cluster index Stusname on Student(Sname) // 聚簇索引

create unique index Stusno on Student(Sno)  //默认升序建立索引
create unique index SCno on SC(Sno asc, Cno desc) //Sno 升序 Cno 降序
drop index Stusno

distinct

创建视图
create view is_student
AS

select sno, sname, sage
from student
where sdept = 'is';

drop table student restrict; //限制删除基本表

creat cluster index stuname on student(sname) 建立聚簇索引
一个基本表只能建立一个聚簇索引,建立索引为了提高查询效率

drop index stuname;

select distinct sno from SC 消除重复的行

降序排列 order by子句
select sno, grade
from SC
where cno = '3'
order by grade desc

count sum avg max min 聚集函数

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值