sql语言关键字

1.select 选择

2.slias 别名

3.distinct 查询内容去重

4.nvl null值替换函数

5.|| 合并多列和特殊字符 字符串拼接

6.col 格式化显示结果

7.order by 排序

8.desc 降序

9.asc 升序,可省略

10.where 筛选结果

11.between a and b 在ab之间

12.in(a,b,c)在abc之中

13.like 模糊匹配 % 匹配多个字符 _ 匹配一个字符 escape 指定转义字符

14.is not null 不为空

15 lower 转为小写

16.upper 转为大写

17. initcap 转为首字母大写掐字母小写

18.concat 字符串拼接

19.substr(str,star,length)字符串截取(1开始)

20.length 获取字符串长度

21.nvl(null_col,var) 转换空值

22.round(str,n) 四舍五入

23.trunc(str,n) 只舍不入

24.mod(arg1,arg2) 取余

25.sysdate 获取系统当前时间

26.months_between(a,b) 两个日期相差几个月

27.add_months(args,x) 返回args往后推x月的日期

28.next_day(data,n) data后的下一个星期n的日期

29.last_day(data) data所在月份的最后一天的日期

30.round('日期','格式') 日期n舍n+1入

31.trunc 日期截取 只舍弃

32.to_char 将日期转换成字符串

33.to_number 将日期转换成数字

34.to_date 将字符转换为日期

你可能感兴趣的:(sql语言关键字)