sql优化---后面再看吧
摘要:http://blog.itpub.net/31555484/viewspace-2565387/ https://blog.csdn.net/pengpeng__/article/details/80072358 https://www.cnblogs.com/clsn/p/8214048.htm
阅读全文
订单号的生成
摘要:<select id="getOrderNumber" resultType="string"> select order_sque.nextval from dual</select>https://zhidao.baidu.com/question/129650627.htmldual : 是o
阅读全文
脏读,不可重复读,幻读-MySQL-oracle的级别
摘要:我感觉情况还有很多种。像我那个预约提货的bug,写入两次预约,应该跟网络有关。 https://www.cnblogs.com/L-Z-P/p/7677874.html 简短 https://blog.csdn.net/qq_41376740/article/details/81835713 有图
阅读全文
oracle 查两个日期之间数据有多少条
摘要:Select COUNT(*) from DPWEB.T_WEB_EVALUATE where CREATETIME >= to_date('2019-06-14 00:00:00','yyyy-mm-dd hh24:mi:ss')and CREATETIME <= to_date('2019-06
阅读全文
表空间_oracle
摘要:https://zhidao.baidu.com/question/283085151.html 1。oracle建立的表空间,是给你用来存储表的数据的。 2。可以在任意盘建立。 https://baike.baidu.com/item/%E8%A1%A8%E7%A9%BA%E9%97%B4/126
阅读全文
送货地图中的数据库操作
摘要:简单的从两个表查询数据,组合起来 select o.表1, d.*FROM 表2 d,表1 owhere d.CODE = o.CODEand o.COUNTY_CODE = '310118'; 插入insert into T_WEB_TOWNSHIPDELIVERY (VILLAGECODE,VI
阅读全文