background picture of the home page

Hello World

js取消焦点事件

在前端开发中,取消焦点可以通过多种方法实现,以下是一些常用的方法: ‌使用blur()方法‌:通过调用元素的blur()方法来取消焦点。例如,通过element.blur()来取消元素的焦点事件。这种方法适用于直接对特定元素取消焦点。 ‌使用document.activeElement属性‌:可以使

thumbnail of the cover of the post

redis实现热搜和最近搜索

热搜 参考: https://blog.csdn.net/weixin_45683778/article/details/136320916 https://blog.csdn.net/qq_33449307/article/details/117396874 https://blog.csdn.n

thumbnail of the cover of the post

mysql复杂sql书写示例

查询当天在某个小时之前每个小时的数据量 select DATE_FORMAT(create_time,'%H') hours,count(1) count from movie_item where date(create_time)=date(now()) group by hours 06 1

thumbnail of the cover of the post

MySQL的IF语句详解

参考: https://blog.csdn.net/jialexiaoxuan/article/details/134524912 MySQL数据库中,IF语句是一种条件控制语句,用于根据某些条件的真假来执行不同的代码逻辑。IF语句可以帮助我们在SQL查询中实现更复杂的逻辑操作。 1、IF语句的基本

thumbnail of the cover of the post

Mysql字符串处理函数详细介绍、总结

参考: https://www.jb51.net/article/48915.htm 一、简明总结 ASCII(char)        返回字符的ASCII码值 BIT_LENGTH(str)      返回字符串的比特长度 CONCAT(s1,s2…,sn)     将s1,s2…,sn连接成字

thumbnail of the cover of the post

MySQL 中创建视图设置字段类型

在 MySQL 中创建视图时,不能直接在视图定义中指定新计算字段的数据类型。但是,你可以通过函数调用或其他表达式转换来隐式地确保新字段的类型。 例如,如果你希望在视图中添加一个新的 int 类型的字段,你可以使用 CAST() 函数或 CONVERT() 函数进行类型转换。 这里是一个简单的例子,假

thumbnail of the cover of the post