博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL语句
阅读量:5060 次
发布时间:2019-06-12

本文共 729 字,大约阅读时间需要 2 分钟。

1、DISTINCT
SELECT DISTINCT 列名称 FROM 表名称
 
2、!= 和 not
select * from emp where job != 'clerk';
select * from emp where not job = 'clerk';
 
3、between ... and
oracle中日期格式;
1981年出生的雇员信息;
select * from emp where hierdate between '01-1月-1981' and '31-12月-1981'
 
4、is null 和 is not null 和 not 字段 is null
select * from emp where comm is null;
select * from emp where comm is not null;
select * from emp where not comm is null;
 
5、in 和 not in
在in中使用null对结果没有影响;
在not in中使用null 则查不到任何数据;
select * from emp where empno = 7369 or empno = 7499 or empno = 8899;
select * from emp where empno in (7369,7499,8899);
 
6、like子句的用法
_匹配任意一个任意字符;
%匹配0个、1个或多个任意字符;
select * from emp where ename like '_a%';

转载于:https://www.cnblogs.com/Lemon-ZYJ/p/9324058.html

你可能感兴趣的文章
python os模块
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>
c# 泛型+反射
查看>>
第九章 前后查找
查看>>
Python学习资料
查看>>
多服务器操作利器 - Polysh
查看>>
[LeetCode] Candy
查看>>
Jmeter学习系列----3 配置元件之计数器
查看>>
jQuery 自定义函数
查看>>
jq 杂
查看>>
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
作业一
查看>>
AJAX
查看>>
ActiveMQ与spring整合
查看>>
web服务器
查看>>
Leetcode(7)-反转整数
查看>>
堆栈的分配效率问题
查看>>
特征选取1-from sklearn.feature_selection import SelectKBest
查看>>
python机器学习-sklearn挖掘乳腺癌细胞(一)
查看>>