11 2022 档案

摘要:项目结构: 1.引入pom依赖: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema 阅读全文
posted @ 2022-11-30 15:12 super超人 阅读(1141) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/m0_45364328/article/details/125175796 https://blog.csdn.net/weixin_48921808/article/details/119918734 备选: https://blog.csdn.net/ 阅读全文
posted @ 2022-11-29 22:51 super超人 阅读(23) 评论(0) 推荐(0)
摘要:建表语句: CREATE TABLE `user` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', `name` varchar(30) DEFAULT NULL COMMENT '名称', `sex` varchar(1) DEFAU 阅读全文
posted @ 2022-11-29 19:41 super超人 阅读(272) 评论(0) 推荐(1)
摘要:IDEA插件市场点开资源库后报错:List of plugins was not loaded for following hosts: http://plugins.jetbrains.com。 解决办法: File-Settings-Plugins-Browse repositories-Man 阅读全文
posted @ 2022-11-25 17:14 super超人 阅读(243) 评论(0) 推荐(0)
摘要:深分页:分页太多,越往后的页数查询越慢。 例如: select id,name,balance from account where create_time> '2020-09-19' limit 100000,10; limit 100000,10意味着会扫描100010行,丢弃掉前100000行 阅读全文
posted @ 2022-11-18 12:33 super超人 阅读(520) 评论(0) 推荐(0)