最新 最热

什么是MySQL alter表?

当我们需要修改数据表名或者修改数据表字段时,就需要使用到MySQL ALTER命令。

2023-05-09
1

树的子结构

输入两棵二叉树A,B,判断B是不是A的子结构。(ps:我们约定空树不是任意一个树的子结构)

2023-05-06
0

142. Linked List Cycle II(环形链表2,找到环的入口点并且推理验证)

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.

2023-05-06
1

141. Linked List Cycle(环形链表,判断链表中是否有环存在)

Given a linked list, determine if it has a cycle in it.

2023-05-06
1

查看外键名称查看数据库外键名字

我们要进行删除外键时,需要知道外键的名字,那么如何查看数据库外键呢?有2种方式查看: 1.过查看表的方式查看外键名字; 2.通过mysql自带的系统表查看外键。...

2023-05-05
1

SpringBoot多数据源unsatisfied dependency expressed through method 'entityManagerFactoryBuilder...

本来的项目(基于SpringBoot 2.0.5-RELEASE)集成了JPA、mybatis的注解、XML方式访问DB。 后面集成多数据源的时候启动SpringBoot时出现了如下错误:

2023-05-05
1

Mybatis批量update修改实例

UserMapper.xml 配置:<sql id="condition4Update"> <where> <if test="orgNo != null" > AND org_no = #{orgNo,jdbcType=VARCHAR} ......

2023-05-05
1

一个标准的JAVA枚举类

一个标准的JAVA枚举类(来源是LMAX公司的一个提供银行的小项目)/** * Copyright 2013 Marc Wrobel (marc.wrobel@gmail.com) * * Licensed under the Apache License, Version 2.0 (the "License"......

2023-05-04
1

动态SQL

动态sqlif<select id="getUserList" resultMap="userList">select u.*,r.roleName from smbms_user u,smbms_role r where u.userRole = r.id <if test="userRole != null...

2023-05-04
1

通讯录多版本代码归纳

通讯录中联系人的容量一开始就是确定的,不能增加也不能减少。联系人过少,容量浪费;联系人过多,不够储存。 Contact.h

2023-04-27
1