- 字符串和日期要包含在单引号中
- 字符大小写敏感,日期格式敏感
- 默认日期格式:dd - MON - RR
select * from emp where last_name = 'King' where last_name = 'KING' --两次查询的结果不同 selelct * from emp where date = '20-12-18' where date = '2018-12-20' --语句报错 格式错误
- 修改日期格式
alter session set NLS_DATE_FORMAT = 'YYYY-MM-DD';
- BETWEEN ...AND
- 含有边界
- 小值在前,大值在后。
between 1000 and 2000; --可以查询到结果 between 2000 and 1000; --无法查询到结果