摘要: MySQL数据库开发规范 sql执行顺序: (1)from (3) join (2) on (4) where (5)group by (6) avg,sum (7)having (8) select (9) distinct (10) order by 1. 杜绝直接 SELECT * 读取全部字 阅读全文
posted @ 2022-03-23 16:28 甜8筒 阅读(47) 评论(0) 推荐(0) 编辑
摘要: MySQL中的数据类型 MySQL有三大类数据类型, 分别为数字、日期\时间、字符串, 这三大类中又更细致的划分了许多子类型: 数字类型 整数: tinyint、smallint、mediumint、int、bigint 浮点数: float、double、real、decimal 日期和时间: d 阅读全文
posted @ 2022-03-23 16:26 甜8筒 阅读(397) 评论(0) 推荐(0) 编辑
摘要: -- 实际SQL,查找用户名为Jefabc的员工 select * from emp where name = 'Jefabc'; -- 查看SQL是否使用索引,前面加上explain即可 explain select * from emp where name = 'Jefabc'; expain 阅读全文
posted @ 2022-03-23 16:24 甜8筒 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 方式一: service 层 List<Map<String,Object>> data = new ArrayList<>(); dispatchDao.insertBatch(data); dao层 void insertBatch(List<Map<String,Object>> list); 阅读全文
posted @ 2022-03-23 16:23 甜8筒 阅读(1101) 评论(0) 推荐(0) 编辑
摘要: 添加数据时根据主键进行比对,如果数据存在就更新,如果不存在就新增 <insert id="updateAndInsert" parameterType="com.codyy.ms.entity.IpAreaDO"> INSERT INTO IP_AREA (IP,AREA_NAME,AREA_COD 阅读全文
posted @ 2022-03-23 16:21 甜8筒 阅读(963) 评论(0) 推荐(0) 编辑
摘要: /** * 根据文书标识删除文书 * @param checkDocId */ @Select("UPDATE c_si_doc csd SET csd.IS_ACTIVE = '0' WHERE csd.CHECK_DOC_ID = #{checkDocId}") void handleDocRe 阅读全文
posted @ 2022-03-23 16:19 甜8筒 阅读(100) 评论(0) 推荐(0) 编辑
摘要: <select id="auditEntInfoView" parameterType="String" resultType="com.topinfo.sc.xhzjpx.yqyd.enterpriseaudit.bean.vo.EnterpriseauditVO"> <include refid 阅读全文
posted @ 2022-03-23 16:17 甜8筒 阅读(487) 评论(0) 推荐(0) 编辑
摘要: DROP VIEW IF EXISTS VIEW_DUST_ENT; CREATE VIEW VIEW_DUST_ENT AS SELECT CEE.* FROM C_EI_ENTERPRISEINFO CEE WHERE CEE.IS_ACTIVE = '1' AND EXISTS ( SELEC 阅读全文
posted @ 2022-03-23 16:16 甜8筒 阅读(50) 评论(0) 推荐(0) 编辑
摘要: DELIMITER $$ DROP PROCEDURE IF EXISTS P_C_FD_INSPECTRPT_QRY $$ CREATE PROCEDURE P_C_FD_INSPECTRPT_QRY( i_pageno integer -- 页号 ,i_pagesize integer -- 每 阅读全文
posted @ 2022-03-23 16:11 甜8筒 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 源 <div class="form-group has-error has-feedback"> <label class="control-label" for="inputError2">Input with error</label> <input type="text" class="fo 阅读全文
posted @ 2022-03-23 16:10 甜8筒 阅读(1503) 评论(0) 推荐(0) 编辑