数据库
首页 > 数据库> > SQL视图

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 '%李%';
————————————————
版权声明:本文为CSDN博主「SunnyDayyy」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/SunnyDayyy/article/details/125008762

标签:unionselect,--,region,视图,stuInfo,SQL,where,select
来源: https://www.cnblogs.com/LFL2004211/p/16365839.html