上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页
摘要: Springboot中 Mybatis 配置文件 Mapper参数useGeneratedKeys=“true” keyProperty=“id”useGeneratedKeys设置为 true 时,表示如果插入的表id以自增列为主键,则允许 JDBC 支持自动生成主键,并可将自动生成的主键id返回 阅读全文
posted @ 2021-12-16 11:12 翘中之楚 阅读(1063) 评论(0) 推荐(2) 编辑
摘要: 最近导了个库,发现功能报错,一看是视图报错,navicat一看,哎呦,直接报错。The user specified as a definer ('root'@'%') does not exist。 解决办法 因为视图的人在创建的时候 解决办法1 如果你只有当前用户,你没有root用户的密码,建议 阅读全文
posted @ 2021-12-16 11:06 翘中之楚 阅读(1860) 评论(0) 推荐(0) 编辑
摘要: element样式还是蛮好的,只是有时候我们需要做一些调整,比如,el-input 的边框,官网是这样子的 我们需要去掉这个边框 试了常用的:border: none; 以及:outline:none; 但却没用 tip:将border属性设成0,虽然边框不见了,但是浏览器依然会对border-wi 阅读全文
posted @ 2021-12-10 15:24 翘中之楚 阅读(3257) 评论(0) 推荐(0) 编辑
摘要: method下的方法: checkTime() { var start = new Date(this.form.startDate).getTime() var end = new Date(this.form.endDate).getTime() if (start > end) { this. 阅读全文
posted @ 2021-12-09 09:18 翘中之楚 阅读(1711) 评论(0) 推荐(0) 编辑
摘要: SELECT GROUP_CONCAT(b.name) AS 'name' FROM ( SELECT CONCAT(a.jobs,':',a.name) AS 'name',a.data_id AS 'data_id' FROM ( SELECT CASE bp.jobs WHEN 1 THEN 阅读全文
posted @ 2021-11-25 11:05 翘中之楚 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 1/去掉字段里的逗号.(比如set @= '1,320.00' 想得到@= '1320.00' )UPDATE table SET fieldA = REPLACE(fieldA, ',', '') 2/选择 SELECT REPLACE(fieldA, ',', '') AS Expr1 FROM 阅读全文
posted @ 2021-11-25 10:58 翘中之楚 阅读(633) 评论(1) 推荐(0) 编辑
摘要: 完整的语法如下: 1 group_concat([DISTINCT] 要连接的字段 [Order BY ASC/DESC 排序字段] [Separator '分隔符']) 基本查询 1 2 3 4 5 6 7 8 9 10 11 12 mysql> select * from aa; + + + | 阅读全文
posted @ 2021-10-14 14:47 翘中之楚 阅读(36) 评论(0) 推荐(0) 编辑
摘要: Mybatis-MySQL 中使用IFNULL(p1,p2)函数但是有一些需要注意的地方. 假设数据 title: student id name age 1 Ann 18 2 Bom 19 3 Hehe SELECT name,age FROM student WHERE id = 3;此时查询结 阅读全文
posted @ 2021-10-14 11:34 翘中之楚 阅读(771) 评论(0) 推荐(0) 编辑
摘要: java中时间精确到毫秒级,所以需求时间需要 除以1000 //将时间转换为时间戳 public static String dateToStamp(String s) throws Exception {String res; //设置时间格式,将该时间格式的时间转换为时间戳 SimpleDate 阅读全文
posted @ 2021-10-11 15:11 翘中之楚 阅读(11992) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-10-09 10:57 翘中之楚 阅读(732) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页