文章分类 -  数据库

摘要:参考文章: https://elasticsearch.bookhub.tech/getting_started/install https://www.cnblogs.com/cblogs/p/15215805.html https://cloud.tencent.com/developer/ar 阅读全文
posted @ 2024-01-03 15:02 梦醒时风 阅读(128) 评论(0) 推荐(0)
摘要:实验1 表名student_score,表中记录如下。 需求: 学科按照顺序 语文,数学,英语 分数倒序 1. 使用order by case when语法查询 SELECT * FROM student_score ORDER BY case when subject = '语文' then 1 阅读全文
posted @ 2023-10-23 10:08 梦醒时风 阅读(1134) 评论(0) 推荐(1)
摘要:MyBatisPlus自带分页插件,只需简单的配置就可以实现分页功能。 一、实现一个简单的分页测试功能 1. 引入mybatis-plus依赖 <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-sta 阅读全文
posted @ 2023-10-18 12:18 梦醒时风 阅读(5422) 评论(0) 推荐(0)