-
sql语句大全之数据库的查询
.数据库的查询
简单的select语句语法如下:
Select [ * | all | distinct column1, column2]
From table1 [,table2];
……..distionct 选项,禁止在输出结果里包含重复的行
……..from 子句, 告诉我们从哪些表里获取所需的数据
……..where 子句, 用于给查询添加条件
……..order by 子句,对输出结果进行升序排列
Order by 子句的语法是:
Select [all | * distinct column1, column2, ]
From table1 [ , table2]
Where [condition1 | expression2]
[and | or condition | expression2]
Order by column1 | integer asc | desc ]
……..order by 1 desc 对第一个字段进行降序排列
……..count (*)函数 统计表里的记录数量
语法如下:
Select column [ (*) | column ]
From [table name | column];
使用字段别名来临时命名表的字段,其语法如下;
Select column_name alias_name
From table_name;
第8 章节………使用操作符对数据进行分类
比较操作符:
……相等; (= )
……不相等; ( <> )
……小于; ( < )
…….大于; ( > )
逻辑操作符;
…….Is null 用于与null 进行比较 where salary is null
…….between 在最大值和最小值之间的值 where salary between ‘2000’ and ‘3000’
…….in 用于把一个值与一个指定的值进行比较 where salary in (‘2000’, ‘3000’)
…….like 利用通配符把一个值与类似的值进行比较,通配符有,
百分号( % ),下划线( _ )
…….exists 用于搜索指定表里是否存在满足特定条件的记录。Where exists (select *..);
……..unique
……..all 用于把一个值与另一个集合里的全部值进行比较。Where cost > all (select cost);
……..any 用于把一个值与另一表里任意值进行比较。Whre cost > any (select cost);
……..some 是any的别名,它们可以互换使用。
连接操作符;
……..and 所有连接条件都必须为true, SQL语句才会执行。
……..or 连接条件里有至少一个是true , SQL语句才会执行 where cost =10 or cost=20
求反操作符
……..<>,!= ( not equal ) where salary <> ‘2000’ where salary != ‘2000’
……..not between where salary not between ‘2000’ and ‘3000’
……..not like where salary not like ‘200%’
……..is not null where salary is not null
……..not exists where not exists (select );
……..not unique
……..not in 操作符in 的求反是 not in where salary not in (119,13,87,9);
算术操作符
…….. + ( 加法 ) select salary + bonus , where salary +bonus > ‘40000’
…….. -- (减法)
……. * (乘法)
……. / (除法)
简单的select语句语法如下:
Select [ * | all | distinct column1, column2]
From table1 [,table2];
……..distionct 选项,禁止在输出结果里包含重复的行
……..from 子句, 告诉我们从哪些表里获取所需的数据
……..where 子句, 用于给查询添加条件
……..order by 子句,对输出结果进行升序排列
Order by 子句的语法是:
Select [all | * distinct column1, column2, ]
From table1 [ , table2]
Where [condition1 | expression2]
[and | or condition | expression2]
Order by column1 | integer asc | desc ]
……..order by 1 desc 对第一个字段进行降序排列
……..count (*)函数 统计表里的记录数量
语法如下:
Select column [ (*) | column ]
From [table name | column];
使用字段别名来临时命名表的字段,其语法如下;
Select column_name alias_name
From table_name;
第8 章节………使用操作符对数据进行分类
比较操作符:
……相等; (= )
……不相等; ( <> )
……小于; ( < )
…….大于; ( > )
逻辑操作符;
…….Is null 用于与null 进行比较 where salary is null
…….between 在最大值和最小值之间的值 where salary between ‘2000’ and ‘3000’
…….in 用于把一个值与一个指定的值进行比较 where salary in (‘2000’, ‘3000’)
…….like 利用通配符把一个值与类似的值进行比较,通配符有,
百分号( % ),下划线( _ )
…….exists 用于搜索指定表里是否存在满足特定条件的记录。Where exists (select *..);
……..unique
……..all 用于把一个值与另一个集合里的全部值进行比较。Where cost > all (select cost);
……..any 用于把一个值与另一表里任意值进行比较。Whre cost > any (select cost);
……..some 是any的别名,它们可以互换使用。
连接操作符;
……..and 所有连接条件都必须为true, SQL语句才会执行。
……..or 连接条件里有至少一个是true , SQL语句才会执行 where cost =10 or cost=20
求反操作符
……..<>,!= ( not equal ) where salary <> ‘2000’ where salary != ‘2000’
……..not between where salary not between ‘2000’ and ‘3000’
……..not like where salary not like ‘200%’
……..is not null where salary is not null
……..not exists where not exists (select );
……..not unique
……..not in 操作符in 的求反是 not in where salary not in (119,13,87,9);
算术操作符
…….. + ( 加法 ) select salary + bonus , where salary +bonus > ‘40000’
…….. -- (减法)
……. * (乘法)
……. / (除法)
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式