SQL视图

2022/6/12 2:20:18

本文主要是介绍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



这篇关于SQL视图的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程