background picture of the home page

Hello World

Mysql 数据库时间与系统时间不一致问题排查

参考: https://blog.csdn.net/2401_83396248/article/details/139665625 在我们学习中使用到sysdate这个函数时,发现查出来的日期时间与当前的正确时间不一致,相差8个小时左右,为什么会产生这个问题?又该如何解决? 在服务器终端中查询时间:

thumbnail of the cover of the post

ruoyi vue版集成积木报表

参考: https://help.jeecg.com/jimureport/projectJoin/ruoyivue.html 2、执行初始化脚本积木报表sql jimureport.sql 3、pom中引入积木报表最新依赖 springboot2 <dependency> <groupId>o

thumbnail of the cover of the post

使用sql in数据量较大时的处理方法

参考: https://www.zhihu.com/question/578354887/answer/2846786420 数据量较小的情况 采用in (a,b,c,d,...)的方式。 数据量较大的情况 采用临时表,把IN的变量放进一个临时表中,然后改写为子查询方式 这种方法稍微麻烦一些。有可能

thumbnail of the cover of the post

如何用一个SQL语句查询多个表的记录数

参考: https://blog.csdn.net/shanliangliuxing/article/details/8498434 为了查询两个表的数据量,您可以使用SQL中的COUNT()函数来计算每个表的行数。以下是一个示例SQL查询,它会返回两个表table1和table2的行数: SELE

thumbnail of the cover of the post

如何获取mysql的时间戳

参考: https://www.php.cn/faq/834111.html 1. NOW() 函数 NOW() 函数返回当前时间戳: SELECT NOW(); 2. CURRENT_TIMESTAMP 函数 CURRENT_TIMESTAMP 函数也返回当前时间戳: SELECT CURREN

thumbnail of the cover of the post

mysql里CST时区的坑及解决

参考: https://www.jb51.net/database/3014537d0.htm mysql 里 CST 时区是个非常坑的概念,因为在 mysql 里CST既表示中国也表示美国的时区。 但是在Jdk代码里,CST 这个字符串被理解为Central Standard Time (USA)

thumbnail of the cover of the post

springboot starter无法注入bean

注意,springboot2和3的注入方式不一样,参考: https://www.cnblogs.com/emptyironbox/p/17736143.html 在自定义 starter 项目时,如果组件无法被 @Com

thumbnail of the cover of the post