上一页 1 2 3 4 5 6 7 8 ··· 32 下一页
摘要: https://www.cnblogs.com/qq1445496485/p/15895620.html 阅读全文
posted @ 2022-10-21 11:57 moonsoft 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 排序不正确写法: List<Map<String,Object>> sortList2 = list.stream().sorted((o1, o2) -> { if (o1.get("DAY_ACTUAL").toString().compareTo(o2.get("DAY_ACTUAL").to 阅读全文
posted @ 2022-10-21 10:51 moonsoft 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 高清多媒体接口(High Definition Multimedia Interface,HDMI ) 可以发送未压缩的音频及视频信号 阅读全文
posted @ 2022-09-28 11:27 moonsoft 阅读(183) 评论(0) 推荐(0) 编辑
摘要: SQL模糊查询的时候,如果字段中有%,我们又希望查找出所有有%的字段,使用select * from table where name like '%%%'类似的语句是不行的。这时候我们可以使用select * from table where name like '%[%]%。 阅读全文
posted @ 2022-09-19 18:09 moonsoft 阅读(279) 评论(0) 推荐(0) 编辑
摘要: select * from temp where num1 like '%\%%' escape '\'; 阅读全文
posted @ 2022-09-19 17:59 moonsoft 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 数据库在通过连接两张或多张表来返回记录时,都会生成一张中间的临时表,然后再将这张临时表返回给用户。 在使用 left join 时,on 和 where 条件的区别如下: 1、on 条件是在生成临时表时使用的条件,它不管 on 中的条件是否为真,都会返回左边表中的记录。 2、where 条件是在临时 阅读全文
posted @ 2022-09-15 11:37 moonsoft 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 1.fork-join和Map-Reduce模式基本一致2.区别:一个是分布式的,一个是单机的 阅读全文
posted @ 2022-09-06 20:42 moonsoft 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-09-06 09:36 moonsoft 阅读(3) 评论(0) 推荐(0) 编辑
摘要: ... 阅读全文
posted @ 2022-07-26 18:40 moonsoft 阅读(92) 评论(0) 推荐(0) 编辑
摘要: on 和where条件的放置详解 总结: 对于left join,不管on后面跟什么条件,左表的数据全部查出来,因此要想过滤需把条件放到where后面 对于inner join,满足on后面的条件表的数据才能查出,可以起到过滤作用。也可以把条件放到where后面。 数据库在通过连接两张或多张表来返回 阅读全文
posted @ 2022-07-26 09:13 moonsoft 阅读(115) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 32 下一页