sql高级操作

本文提供了SQL高级用法的实际例子,包括创建表、插入数据、使用各种查询条件进行检索等操作,并展示了视图的创建与使用。通过这些例子,读者可以更好地理解如何利用SQL来管理和查询数据库。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

同样也是用于记录以便日后联系用!里面基本包含了一般sql的高级用法!

drop table if exists stu;
create table stu(
name varchar(30),
age int,
stuid int not null PRIMARY key AUTO_INCREMENT,
idnum int,
sex varchar(30),
check(sex in ('男','女'))
)charset=utf8;

insert into stu (name,age,idnum,sex)VALUES('damon',789,4678945,'男');
insert into stu (name,age,idnum,sex) VALUES('coco',13,345,'女');
insert into stu (name,age,idnum,sex)values('kitty',13,46,'女');
insert into stu (name,age,idnum,sex)values('alice',14,123,'女');
SELECT * from stu;
select * from stu limit 0,2;
select * from stu where name like '%ce';
select * from stu where name REGEXP "a[sfdl][^ads]";
select * from stu where name in ('damon','alice');
select * from stu where name BETWEEN 'coco' and 'kitty'; 
select * from stu where name not between 'coco' and 'kitty';
select name as stuname,stuid as id from stu;

drop view if EXISTS young_stu;
create view young_stu as
select name,age from stu where age between 10 and 20;

select * from young_stu where age is not null;


后面会再记录一章专门使用sql函数。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值