上一页 1 ··· 4 5 6 7 8
摘要: /*<br>* *查看目标表中已添加的索引 * */ --在数据库中查找表名 select * from user_tables where table_name like 'tablename%'; --查看该表的所有索引 select * from all_indexes where table 阅读全文
posted @ 2019-06-05 11:29 superming168 阅读(3633) 评论(0) 推荐(0) 编辑
摘要: 1.只批量插入: insert into WXPAY_ACCOUNT(id ,out_trade_no ,transaction_id)select SEQ_WXPAY_ACCOUNT.nextval id,a.* FROM ( SELECT#{wxpayAccount.outTradeNo ,jd 阅读全文
posted @ 2019-05-29 15:20 superming168 阅读(1407) 评论(1) 推荐(0) 编辑
摘要: <!-- 批量添加 --> <insert id="batchAdd" parameterType="java.util.List"> merge into t_tabe_temp fail using ( <foreach collection="list" item="item" separat 阅读全文
posted @ 2019-05-29 15:17 superming168 阅读(966) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8