SQL的语法
1) 连接号:||
2) 把两个字符连接起来 eg:select game_card_type_id||name from game_card_type;
3) select distinct dept_id,title from emp: 对多个字段的唯一
4) order by desc(降序) order by asc(升序)
5) where column is (not) null
6) like ‘_a%’ _表示一个字符。%表示多少字符 like ‘%x\_y%’ escape ‘\’:显示包括x_y的字符
7) where table1.column(+)=table2.column place the operator on the side of the join where there is no value to join to. 把(+)放在可能没有值的位置.
8) 联接类型: equijoin:等式查询 non_equijoin:不等式查询 self:自己和自己建立关联 out join:where a.column=b.column(+) 可以用的操作符是:’=’,’and’,不可以用’or’,’in’
9) COUNT 函数所用的列包含空值时,空值行被忽略。
10) where 后的in | any | all 的区别 in : 等于子查询的任何一个数 any : 与子查询的每一个值相比,只要比其中一个大(小)就可以了 all : 与子查询的所有值相比要比所有的的都大(小) !=ALL作用跟NOT IN 一样
函数:
1、字符函数 :
.lower:把字符转成小写
.upper:把字符转成大写
.initcap:把单词的第一个字母变成大写
.concat:连接字符 concat(‘good’,’morning’)=goodmoring
.SUBSTR (column\expression, m[,n]) 用于对字符串进行截取操作,从第m个位置开始,把其后的连续n个字符的部分截取下来,如果m位负值,则从末尾开始计算。
eg:substr(‘string’,1,3) =str substr(‘string’-3,3)=ing .INSTR('String', 'r')=3 返回子字符串所在的位置.
.LPAD(sal,10,'*') =*******sal 函数将左边的字符串填充一些特定的字符
.length: 用于返回表达式中的字符数,注意返回的是NUMBER。
.NVL(expression1, expression2) NVL 函数用以把一个空值转换为一个实值,如:
NVL(100/quantity, 0) ,要是quantity为空值,该函数返回一个0。 如果两个字段类型不同必须进行转换。
.Min():返回最小值。。如果是字符。。A
2、数学函数
.round:四舍五入 round(2.566,2)=2.27 round(45,-1)=50
.trunc: 截断 trunc(2.566,2)=2.56 trunc(45,-1)=40
.mod: mod(m,n):m-n*flood(m/n) file://flood是取整数
3、日期函数:
a) months_between(date1,date2):算date1和date2之间的月的数量,可以是小数可以是负数 months_between(’01-sep-95’,’11-jan-94’)=1.9774194
b) add_months(date,n):为date加上N个月,N只可以是整数
c) next_date(date,’char’):查找date的下一个星期N next_date(’01-sep-95’,’FRIDAY’)=08-SEP-95
d) last_day(date):查找date月的最后一天。
e) rount(date):把日期四舍五入 rount(25-MAY-95’,’MONTH’)=01-JUN-95 rount(25-MAY-95’,’YEAR’)=01-JAN-95
f) trunc(date):把日期截断 trunc (25-MAY-95’,’MONTH’)=01-MAY-95 trunc (25-MAY-95’,’YEAR’)=01-JAN-95
g) 日期中RR与YY的区别,RR格式对日期作类似于舍入的操作,YY格式对日期作类似于截取的操作 RR YY 1995 27-oct-95 1995 1995 1995 27-oct-17 2017 1917 2001 27-oct-17 2017 2017 2001 27-oct-95 1995 2095 用法:select to_char(sysdate, 'YY') from dual; select to_char(to_date('95-11-27', 'RR-MM-DD'), 'YYYY-MM-DD') from dual; select to_char(to_date('95-11-27', 'YY-MM-DD'), 'YYYY-MM-DD') from dual;
4、转换函数
1)TO_CHAR: TO_CHAR(date,’fmt’):fm前缀用来去除首尾的空字符或0 TO_CHAR(total,’fm$999999’)
如果想转成$0.25,那就要写成fm$9999990.99 可以把日期转换成字符 TO_CHAR(log_time,’MM/YY’)
TO_CHAR(lot_time,’fmdd’’of;’’mm yyyy’)
具体格式如下 :
HH24:MI:SS AM-----------15:24:32 pm
DD’’of’’MONTH-----------12 of MAY
Ddspth------------------------fourteenth
Ddsp--------------------------fourteen
ddth---------------------------4th
YYYY-----------------------1978
MM-----------------------------12
MONTH-------------------------MAY
5、group 函数avg,count,max,min,stddev,sum,variance |