上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页
摘要: 1093 - You can't specify target table 'table_name' for update in FROM clause;不能先select出同一表中的某些值,再update这个表(在同一语句中) 原语句: delete from i_user where b_cod 阅读全文
posted @ 2022-07-01 09:34 唏嘘- 阅读(40) 评论(0) 推荐(0)
摘要: select DISTINCT(left(created_on, 10)) createDate from record where plan_id = '123456789' order by created_on desc; 报错信息: Expression #1 of ORDER BY cla 阅读全文
posted @ 2022-06-23 15:27 唏嘘- 阅读(607) 评论(0) 推荐(0)
摘要: MySQL中char_length(str),length(str)都属于判断长度的内置函数,根据其得到字符串的长度; char_length(str) 计算单位:字符 不管汉字还是数字或者是字母都算是一个字符 length(str) 计算单位:字节 utf8编码:一个汉字三个字节,一个数字或字母一 阅读全文
posted @ 2022-06-20 10:56 唏嘘- 阅读(11516) 评论(0) 推荐(0)
摘要: 1. not in的结果集中出现null则查询结果为null; select * from device where code not in ('A', 'B', null); 上面查询结果为 null,查不出想要的结果 2、in的结果集中出现null不影响; select * from devic 阅读全文
posted @ 2022-06-13 17:03 唏嘘- 阅读(301) 评论(0) 推荐(0)
摘要: 1、将数组转换成集合 String [] arr = new String[]{"1", "2", "3"}; List<String> list = Arrays.asList(arr); list.remove("1"); 控制台报错: Exception in thread "main" ja 阅读全文
posted @ 2022-06-01 13:29 唏嘘- 阅读(370) 评论(0) 推荐(0)
摘要: 问题描述:当传入的 status值为0 时,不进入 if 判断 <select id="selectAll" parameterType="com.imes.domain.entities.User" resultMap="BaseResultMap"> select * from user <wh 阅读全文
posted @ 2022-02-16 15:08 唏嘘- 阅读(759) 评论(0) 推荐(0)
摘要: post请求接口: 由提示信息可知:与SSL签名证书有关 解决方案: 在Postman > setting > SSL开关关闭即可。 阅读全文
posted @ 2022-02-16 14:52 唏嘘- 阅读(7767) 评论(0) 推荐(0)
摘要: 正确写法: <if test="userCode != null and userCode !='' and userCode !='admin'.toString()"> 或者 <if test='userCode != null and userCode !="" and userCode != 阅读全文
posted @ 2022-02-14 11:19 唏嘘- 阅读(310) 评论(0) 推荐(0)
摘要: 人员按照中文首字母排序 sql: select * from staff ORDER BY CONVERT(`name` USING gbk) mybatis-plus: orderByAsc("convert(" + name + " using gbk)") 阅读全文
posted @ 2022-02-11 16:19 唏嘘- 阅读(150) 评论(0) 推荐(0)
摘要: <el-table-column prop="created_on" label="创建时间" :formatter="formatDate"/> //格式化时间formatDate(row) { if (row.nextStartTime) { return row.nextStartTime.s 阅读全文
posted @ 2022-02-11 15:25 唏嘘- 阅读(481) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页