SQL server视图

--视图是对于一段sql的封装

--视图其实就是一张表(真实的,虚拟的表)

建立视图

 

create view a 
as
select *from stuInfo

查询视图

select *from a;

这样的话可以简化很多的代码 

 

create table region(
id varchar(20) primary key, --主键,区域编号
name varchar(20) not null, --区域名称
pid varchar(20) not null --区域附属编号 0省份
);

insert into region 
select 's2309','广东省','0'union
select 's2098','湖南省' ,'0'union
select 's2033','广西省' ,'0'union
select 's2034','永州市' ,'s2098'union
select 's2056','长沙市' ,'s2098'union
select 's2012','广东市' ,'s2309'union
select 's2089','东莞市' ,'s2309' union
select 's2037','怀化市' ,'s2098'

查询省份

select *from region where pid='0'

查询湖南省下面的市区

select *from region where pid in(
select id from region where name ='湖南省'
)

 

-- 查询性张的人: 张x,张xx,张xxx
select * from stuInfo where stuName like '张%';

-- 查询性张的人: 张xx
select * from stuInfo where stuName like '张__';

-- 查询以丽结尾的人: xx丽
select * from stuInfo where stuName like '%丽';

-- 查询名字带秋的人: 秋xx,x秋x,xx秋
select * from stuInfo where stuName like '%秋%';

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值