摘要: public class FunctionTest { public static void main(String[] args) { Function<Numbers, Integer> test1 = i -> i.getN1() - i.getN2(); Function<Numbers, 阅读全文
posted @ 2022-11-28 19:50 郭慕荣 阅读(325) 评论(0) 推荐(0) 编辑
摘要: mysql联合更新如下所示: update orders o left join users u on o.userId = u.id set o.userName = u.name; 当然了可以使用左连接,也可以使用右关联,也可以使用内关联。 阅读全文
posted @ 2022-11-28 14:07 郭慕荣 阅读(50) 评论(0) 推荐(0) 编辑