摘要: 引用自:https://blog.csdn.net/StillTogether/article/details/81587627 public class Result<T> { private Integer code; private String msg; private T data; pu 阅读全文
posted @ 2021-04-19 14:09 大力的成长 阅读(1615) 评论(0) 推荐(0)
摘要: 转载地址: https://blog.csdn.net/weixin_40797576/article/details/78796028 select * from test where id<>1; 但是mybatis报错 <> 应该转义 &lt;&gt; select * from test w 阅读全文
posted @ 2021-04-19 09:20 大力的成长 阅读(197) 评论(0) 推荐(0)
摘要: mysql8: alter user 'root'@'localhost' identified by '123456'; mysql5.7: update user set authentication_string = password('123456') where user = 'root' 阅读全文
posted @ 2021-02-20 11:33 大力的成长 阅读(37) 评论(0) 推荐(0)