sql初学者笔记 语法基础pdf_sql存储过程语法

sql初学者笔记 语法基础pdf_sql存储过程语法常见注释 — 很少支持 #行内注释 /**/段落注释 基础语法 SELECT 检索数据 语法 作用 例子 释义 select 查找列,并返回行 select prod_name from produ

sql初学者笔记 语法基础

常见注释

  • — 很少支持
  • 行内注释

  • /**/段落注释

基础语法

SELECT

检索数据

语法 作用 例子 释义
select 查找列,并返回行 select prod_name from products;
#可使用,分隔列名来查找多个列。
查找prod_name列,并返回其下的所有行,在products表中。
* 通配符 select * from products; 查找所有列并返回所有行,在products表中。
distinct 返回不重复的值 select distinct vend_id from products;
#不可配合通配符使用除非所有列完全相同
查找vend_id列并返回其下所有行中不重复的值,在products表中。
limit 限制 select prod_name from products limit 5,5; 查找prod_name列并返回其下第5行起5行的值,在products表中。

排序检索数据

语法 作用 例子 释义
order by 排序 select prod_id,prod_price,prod_name
from Products
order by 2;
#默认升序(ASC)排列
#指定按多个列排列时:仅当指定的第一列中有重复元素时,才对其(存在重复值的)按指定的下一列进行排序。
即按照查找的第二个列进行排序,也可指定列名(prod_price)
desc 降序 select prod_id,prod_price,prod_name
from Products
order by 2 DESC,3 desc;
即按照查找的第二个列进行降序排序,desc仅对其前的列有效;

过滤数据

语法 作用 例子 释义
where 在客户端过滤数据 select *
from Products
where prod_price >= 5.99
order by prod_price desc;
#同排序操作一同使用时,不得位于排序操作之前#支持<>=!=等操作,其中<>操作等同于!=
例:
select *
from Products
where prod_id <>”fc”
order by prod_price desc;
#过滤字符串不区分大小写
1.查找所有列,在Products表中,并返回prod_price >=5.99的所有行
2.查找所有列,在Products表中,并返回除prod_id = “fc”之外的所有行
between 值的范围过滤 select prod_name,prod_price
from Products
where prod_price between 4 and 10
查找prod_name,prod_price两列在Products表中,并返回prod_price值为4-10范围内的的的所有行
is 可用来检查null(空值) select prod_name,prod_price
from Products
where prod_price is null
返回所有没有价格的商品
and,or 逻辑操作符
and且
or与,这里是短路的
select *
from Products
where vend_vend_id =”1001″ and prod_price <=4;
#and的优先级比or要高,and,or共同使用时为避免错误应用()明确分组,
#也可使用in代替or,例:
select prod_name,prod_price from products where vend_id in(“1001″,”1002”)
order by prod_name
等同于:
select prod_name,prod_price from products where vend_id = “1001” or vend_id = “1002”
order by prod_name
返回所有vend_vend_id =”1001″ 且 prod_price <=4;的行
not 否定其后的条件 select prod_name,prod_price from products where not vend_id in(“1001″,”1002”)
order by prod_name
可与in连用,返回vend_id=1001 vend_id=1002外的所有行

通配符搜索

语法 作用 例子
% 匹配0、1或多个字符包含空格。不会匹配到null select prod_name
from products
where prod_name like “f%%”
_ 匹配单个字符,包含空格 select prod_name
from products
where prod_name like “fuse_”
rtrim()ltrim() 去除右边、左边空格

创建计算字段

select prod_id ,quantity,item_price,quantity*item_price as expanded_price
from orderitems
where order_num = 20008;
#如上创建了一个expanded_price字段(quantity*item_price的结果的别名),其仅在此时有效而不会存放到表中。

代码100分

使用函数

代码100分select vend_name, upper(vend_name) as vend_name_upcase
from vendors
#将vend_name列下的所有行以大写形式返回
select avg(prod_price) as avg_peice from products where vend_id ="1001"
#返回平均值
select count(*) as num_cust from customers
#返回长度(数目),也可对列表中特定值进行计数

分组

select  vend_id,count(*) as num_prods from  products #对vend_id每行进行计数
group by vend_id;#按照vend_id排序并分组

select cust_id,count(*) as orders
from orders 
group by cust_id 
having count(*)>=2#过滤分组中>=2的,having支持where的所有操作

select order_num,count(*) as items
from orderitems group by order_num
having count(*) >=3
order by items,order_num desc#对分组依照选定的列进行排序

子句查询

代码100分select cust_name,cust_contact from customers where cust_id =(select cust_id 
from orders
where order_num = (select order_num from orderitems where prod_id = "jp2000"));
#由内而外,哈哈
等效于:
select order_num 
from orderitems
where prod_id = "jp2000";
select cust_id 
from orders
where order_num =20006
select cust_name,cust_contact from customers where cust_id =10003

联结(返回不在同一个表中的行)

/*等值语法*/
select vend_name, prod_name,prod_price
from vendors,products
where vendors.vend_id=products.vend_id;#此处过滤联结条件。
#如没有联结条件过滤,将检索出“笛卡尔积”:表1行数*表2行数
/*规范语法*/
select vend_name, prod_name,prod_price
from vendors inner join products
on vendors.vend_id=products.vend_id
自联结(比子查询更快)
/*子查询*/
select cust_id, cust_name, cust_contact
from customers
where cust_name = (select cust_name from customers where cust_contact ="jim jones");
/*自联结*/
select c1.cust_id, c1.cust_name,c1.cust_contact
from customers as c1,customers as c2#不以别名进行会引发错误
where c1.cust_name=c2.cust_name and c2.cust_contact="jim jones"#联结cust_name与c2.cust_name ,并过滤cust_contact="jim jones"的行
/*(c1的cust_name同c2相同,找到了c2的cust_contact="jim jones"也就相当于找到了c1cust_contact="jim jones",知道了cust_contact="jim jones"就可知道cust_id)*/

组合查询

select cust_name,cust_contact,cust_email,cust_state
from customers
where cust_state in("il","in","mi")
union  #组合上下select多个select之间需要多个union分隔,union默认排除重复,union all则不排除
select cust_name,cust_contact,cust_email,cust_state#union中每个查询必须包含相同的列、表达式、或聚集函数
from customers
where cust_name ="wascals"
order by cust_name;#不能分别对每条union指定不同的排序

INSERT

依赖于次序的插入

/*在得知列的次序后才可使用此方式添加,若发生了列的次序变动此添加方式将不安全*/
insert into customers
values("1000000006","toy land","123 any street","new york","ny", "11111","usa",null, null);
#依赖于次序的插入,必须为每一列提供一个值,如某列无添加则应写上null

提供列名的插入

insert into customers(cust_id,cust_contact,cust_email,cust_name,cust_address,cust_city,cust_state,cust_zip)
#必须为提供了列名的列给出一个值
values(null, null,"1000000006","toy land","123 any street","new york","ny", "11111");

从另一个表插入

insert into 表名(列名)
select 列名
from 表名
where 过滤

复制一个表

/*sql*/
select * 
into custcopy 
from customers;
/* mysql*/
create table custcopy as
select * 
from customers;

UPDATE

更新单个列

update customers
set cust_email = "kim@@thetoystore.com"
where cust_id = "100000000005"#如不指定,将更新customers表cust_email列下的所有行

更新多个列

update customers
set cust_email = "kim@@thetoystore.com",cust_contact="sam roberts"
where cust_id = "100000000006"

DELLETE

delete from customers
where cust_id = "1000000006"#删除此行,不过滤则删除所有行
#update删除列
#truncate删除表

添加删除列&&表

添加表

/*添加表时为防止覆盖,应删除表后再进行添加*/
create table orderitems
(order_num integer not null,
order_item integer not null,
prod_id char(10) not null,
quantity integer not null default 1,#设置quantity列下的行默认值为1
item_price decimal(8,2) not null);#not null即不允许填入null,默认可填入null,只有为 not null的列方可为主键及唯一标识
/*add列*/
alter table vendors
add vend_phone char (20);
/*del列*/
alter table vendors
drop column vend_phone;#此操作不可逆
/*删除表*/
drop table custcopy;#此操作不可逆

视图

create view#创建视图
drop view 视图名#删除视图
/*以视图简化联结,创建视图*/
create view productcustomers as
select cust_name , cust_contact,prod_id
from customers,orders,orderitems
where customers.cust_id=orders.cust_id
and orderitems.order_num=orders.order_num;
/*可对视图采取与表相同的查询操作*/
select *
from productcustomers;
/*一个视图过滤查询例子*/
create view customeremaillist as
select cust_id, cust_name,cust_email
from customers
where cust_email is not null;#返回查询中所有cust_email不为空的,并将其添加到视图中
/*视图计算字段例子*/
create view orderitemsexpanded as 
select order_num,prod_id,quantity,item_price,quantity*item_price,quantity*item_price as
expanded_price
from orderitems

事务管理

/*撤销整体*/
start transaction ;
-- 标识事务处理块,块中内容未执行完则整体撤销
/*撤销部分操作*/
savepoint delete1;#标识
rollback to delete1;返回标识delete1

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/7717.html

(0)
上一篇 2023-03-15
下一篇 2023-03-15

相关推荐

  • Python中UTC时间的秒数转换

    Python中UTC时间的秒数转换UTC时间是世界协调时间,也被称为格林威治标准时间(GMT)。它是以英国伦敦的本初子午线为基准,用作全球标准时间。UTC时间不像当地时间会受到夏令时的影响,因此在全球的通讯、航空等领域都广泛应用。

    2023-12-31
    106
  • mysql创建的表注释说明_数据库添加字段

    mysql创建的表注释说明_数据库添加字段1、创建带解释的表 CREATE TABLE test_table( t_id INT(11) PRIMARY KEY AUTO_INCREMENT COMMENT '设置主键自增',

    2022-12-16
    135
  • 解决django.db.utils.OperationalError: no such table: main.api_server__old[通俗易懂]

    解决django.db.utils.OperationalError: no such table: main.api_server__old[通俗易懂]之前项目用的是django1.11.9,数据入库一切正常。最近学习了django rest framework,另开了一个虚拟环境安装了最新版本的django3.1.2,今天将原项目的编译器换成带d…

    2023-04-05
    168
  • 使用Python生成PDF

    使用Python生成PDF在Web应用程序开发过程中,经常需要生成PDF文档,以便客户可以下载或打印信息。Python提供了几个流行的库来生成PDF文件,包括PyPDF2、ReportLab和WeasyPrint。在这篇文章中,我们将探讨如何使用Python生成PDF。

    2024-09-13
    25
  • PXC高可用数据库安装部署

    PXC高可用数据库安装部署说明 Percona XtraDB Cluster(简称PXC),是由percona公司推出的mysql集群解决方案。特点是每个节点都能进行读写,且都保存全量的数据。也就是说在任何一个节点进行写入操…

    2023-04-08
    164
  • Python检查库版本的方法

    Python检查库版本的方法在python中,我们经常需要使用各种各样的库或者第三方模块来实现自己的功能。而这些库的版本是不断更新的,为了避免出现一些不必要的错误或者是兼容性问题,我们需要对这些库的版本进行检查。br
    本文将从多个方面详细阐述Python检查库版本的方法。

    2024-05-04
    61
  • mysql怎么过滤重复数据_MySQL常用命令

    mysql怎么过滤重复数据_MySQL常用命令 一、过滤复制 什么是过滤复制 # 出现原因 让从节点仅仅复制指定的数据库,或指定数据库的指定数据表。主服务器有10个数据库,而从节点只需要同步其中的一两个数据库。这个时候就需要复制过滤。 复…

    2023-03-27
    158
  • Python Button定义及其应用场景

    Python Button定义及其应用场景Button是一种图形用户界面组件,可以让用户在执行某些任务时点击它,从而触发操作。Python的Button组件通常用于创建按钮,以进行某些操作或触发事件,如打开文件或关闭窗口等。它通常用于Tkinter模块中,可以与其他组件一起使用。

    2024-02-21
    101

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注