************************** mybatis *******************************************
#{} 的参数替换是发生在 DBMS 中,而 ${} 则发生在动态解析过程中
优先使用 #{}。因为 ${} 会导致 sql 注入的问题表名用参数传递进来的时候,只能使用 ${}------------------------------------- 函数------------------------------------- ORACLE中的支持正则表达式的函数主要有下面四个:1,REGEXP_LIKE :与LIKE的功能相似2,REGEXP_INSTR :与INSTR的功能相似3,REGEXP_SUBSTR :与SUBSTR的功能相似4,REGEXP_REPLACE :与REPLACE的功能相似select * from tbl_user_quick_card where regexp_like(bank_code, '^[^[:digit:]]+$')[[:alpha:]] 任何字母。[[:digit:]] 任何数字。[[:alnum:]] 任何字母和数字。[[:space:]] 任何白字符。[[:upper:]] 任何大写字母。[[:lower:]] 任何小写字母。[[:punct:]] 任何标点符号。[[:xdigit:]] 任何16进制的数字,相当于[0-9a-fA-F]排序 :select T.* from TBL_SUPPLIER_STAGING_RATE T order by decode(T.BANK_CODE,'ABC',0,'SHB',1,'HXB',2) --排序连接 :select t1.*,t2.* from tbl1 t1 ,tbl2 t2 where t1.id = t2.number 相当于内连接 inner join 全连接 full join数字函数: ROUND(3.456,2)=3.46 截断TRUNC(3.456,2)=3.45 取余 MOD(8,3)=2 绝对值 ABS(-3)=3 向下取整FLOOR(5.8)=5 向上取整 CEIL(5.4)=6字符函数: 转大小写LOWER(x) UPPER(x) 替换 REPLACE(x,old,new) 截取 SUBSTR(x, start ,length) 拼接符号|| INSTRinstr(sourceString,destString,start,appearPosition) ('源字符串' , '目标字符串' ,'开始位置','第几次出现')如果start的值为负数,则代表从右往左进行查找,但是位置数据仍然从左向右计算单行函数: NVL(x,value) decode(ps.pay_mode,'070',0,1)字段处理后分组 : select substr(create_time, 1, 8),count(1) from tbl_channels_transaction group by substr(create_time, 1, 8) 日期计算:select sysdate,(sysdate + interval '12' hour) from dual --当前时间加上12小时1,LTRIM和RTRIM 去掉查询结果左右的空格,2,select to_date('2005-01-01 13:14:20','yyyy-MM-dd HH24:mi:ss') from dual;3,select to_char(sysdate,'YYYYMMDD hh24:mm:ss') from dual--用子查询建立一个表create table Anthor as select * from instructor where 1 = 2--返回发现指定的字符的位置select instr('oracle traning','ra',1,2) instring from dual--返回字符串并将字符串的第一个字母变为大写select initcap('smith') upp from dual--返回一组表达式中的最大值,即比较字符的编码大小select greatest('AA','AB','AC') from dualselect least('AA','AB','AC') from dual;--时间点d当月份最后一天select sysdate, LAST_DAY(sysdate) LAST_DAY from dual; -- NEXT_DAY(d,number) ,时间点d开始,下一个星期几的日期 --◎ 星期日 = 1 星期一 = 2 星期二 = 3 星期三 = 4 星期四 = 5 星期五 = 6 星期六 = 7select sysdate, NEXT_DAY(sysdate,2) aa from dual;--增加月add_monthsselect to_char(add_months(to_date('2016-12-29 23:23:22','yyyy-mm-dd hh24:mi:ss'),2),'yyyy-mm-dd hh24:mi:ss') from dual--增加天select to_char(to_date('2016-12-29 23:23:22','yyyy-mm-dd hh24:mi:ss')+62,'yyyy-mm-dd hh24:mi:ss') from dual--增加小时、1/(24*60)增加分钟select to_date('02-22-08 10:30:30','mm-dd-yy hh24:mi:ss') today,to_date('02-22-08 10:30:30','mm-dd-yy hh24:mi:ss')+ 1/24 next_hour from dual;--RPAD 在列的右边粘贴字符select rpad('gao',2,'*')from dual;select lpad('gao',4,'*')from dual;------------------------------------- 效率,连接------------------------------------- 如果查询的两个表大小相当,那么用in 和exists 差别不大。 如果两个表中一个较小,一个是大表,则子查询表大的用exists,子查询表小的用inselect*fromtbl_cashier_numberwherecashier_noin(selectcashier_nofromtbl_channels_transaction )select t.* from tbl_cashier_number t where exists (select cashier_no from tbl_channels_transaction where cashier_no = t.cashier_no )内连接:select tbl_class c inner join tbl_student s on c.class_id = s.student_class_id首先先将Class表和Student表进行交叉连接然后通过on后面的限制条件,只选择那些StudentClassID和ClassID相等的列隐式内连接:select tbl_class c,tbl_student s where c.class_id = s.student_class_id左外链接、右外链接全外连接:将左边和右边表每行都至少输出一次,用关键字”full outer join”进行连接,可以看作是左外连接和右外连接的结合自连接------------------------------------- sequence------------------------------------- create sequence SEQ_CASHIER_TRANS_IDminvalue 1maxvalue 9999999999start with 100000increment by 1cache 20cycle;--循环,达到最大值从最小值开始循环,否则达到最大值会报错select SQE_CASHIER_TRANS_ID.nextval from dualdrop sequence seq1select * from all_sequencesselect * from TBL_SYS_SEQUENCE 收银台表UUID uuid = UUID.randomUUID();String uuidStr = uuid.toString().replace( "-", ""); 主键生成CREATE UNIQUE INDEX "CARDREALUAT"."PK_TBL_USER_QUICK_CARD" ON "CARDREALUAT"."TBL_USER_QUICK_CARD" ("SERILA")CREATE UNIQUE INDEX "CARDREALUAT"."Index_U_INFO" ON "CARDREALUAT"."TBL_USER_QUICK_CARD" ("USER_NO", "SUPPLIER_NO", "CARD_NO", "CARD_STATUS", "ACCOUNT_TYPE")索引:创建索引可以根据查询业务的不同分为两种:单一列的索引,联合索引. 顾名思义,单一列索引就是指在表的某一列上创建索引,联合索引是在多个列上联合创建索引.优缺点比较:1):索引所占用空间:单一列索引相对要小.2):索引创建时间:单一列索引相对短.3):索引对insert,update,delete的影响程序:单一列索引要相对低.4):在多条件查询时,联合索引效率要高.索引的使用范围:单一列索引可以出现在where 条件中的任何位置,而联合索引需要按一定的顺序来写条件列出现联合索引的第一列 使用联合索引条件列没有出现联合索引的第一列 不使用联合索引条件列在first_name和last_name中间加入另外一个条件 不使用联合索引------------------------------------- sql-------------------------------------分页select t.* from (select rownum rn,tb.* from TBL_COUPON_DETAIL tb ) t where rn > 10 and rn <= 20------------------------------------- myBatis-------------------------------------传入的map中ids为集合,按照集合中的顺序排列结果集 数据库sql语句 如果有变量 使用 #{}这种方式
user_no = #{userNo} and account_type = #{accountType} =0]]>