上一页 1 ··· 3 4 5 6 7
摘要: TDD,知乎链接 阅读全文
posted @ 2021-02-22 11:14 卡卡西殿 阅读(35) 评论(0) 推荐(0)
摘要: 多表查询(连接查询、嵌套查询、exists、集合查询) 连接查询: #查询学生的信息和选课程的信息SELECT stu.*,sc.*FROM stu,scWHERE stu.sno = sc.sno#查询每个学生的信息和选修课程的信息和学时SELECT stu.*,sc.*,ctimeFROM st 阅读全文
posted @ 2021-01-31 19:26 卡卡西殿 阅读(44) 评论(0) 推荐(0)
摘要: 本文主要内容参考: https://blog.csdn.net/qq_43717736/article/details/107722502;主要是sql语句。 SELECT sname,(2020-age) as birthFROM stu; 单表查询常用语句: #查询有选修课程的去重学生学号 SE 阅读全文
posted @ 2021-01-31 15:11 卡卡西殿 阅读(123) 评论(0) 推荐(0)
摘要: https://www.bookstack.cn/read/hutool/a6819f05207359bb.md 阅读全文
posted @ 2021-01-14 15:22 卡卡西殿 阅读(39) 评论(0) 推荐(0)
摘要: 两篇博客,亲情奉上 https://zhuanlan.zhihu.com/p/39408398 https://www.cnblogs.com/mysticbinary/p/12613243.html 阅读全文
posted @ 2021-01-13 16:49 卡卡西殿 阅读(46) 评论(0) 推荐(0)
摘要: (1)通过进程名称,查看进程详情。 ps -ef | grep "DJProvisionginPolicyxx" 其中 3332490表示,进程ID。 (2)通过端口号,查看进程详情。 lsof -i:端口号 netstat -tunpl | grep 端口号 其中32395表示进程ID (3)强制 阅读全文
posted @ 2021-01-05 16:09 卡卡西殿 阅读(47) 评论(0) 推荐(0)
摘要: 我们先看下Class<Integer>与 Class<?> 的差异 Class<Integer> cla、与Class<?> cl;前一个表示cla只能指向Integer这种类型,而后一个cl表示可以指向任意类型。 cla = Integer.class 可以,但cla = Double.class 阅读全文
posted @ 2020-12-26 16:30 卡卡西殿 阅读(777) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7