- 博客(6)
- 收藏
- 关注
原创 PAT (Basic Level) Practice 1003
import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String[] text = new String[n]; for (int i = 0; i < n; i++) {
2022-05-20 17:05:06
141
原创 IDEA在XML中直接写SQL、与数据表关联上需要打开的插件
项目场景:写代码一直用的IDEA,有段时间整理了idea的一些插件,把平时可能没咋用到的插件关掉了,结果导致xml的数据库表和字段的一些提示消失,当时找了一些博客看怎么重新开启,但都只是写了关于如何配置的文章。解决方案:启用JAVA SQL Libraries插件,然后发现xml的提示又恢复了。说明这个插件是xml中使用sql提示必须开启的。...
2021-11-18 14:12:55
1622
原创 mysql8.0日常使用记录
1. 行转列并拼接使用数据库函数group_concat()2.递归with recursive test_paths(id, path) as ( select id, name from test where parent_id is null # 溢出条件 union all select tp.id, concat(tp.path, '/', t.name) from test_paths tp join test t on tp.id = t.parent_id #
2021-11-11 16:18:45
549
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人