当我们需要修改数据表名或者修改数据表字段时,就需要使用到MySQL ALTER命令。
输入两棵二叉树A,B,判断B是不是A的子结构。(ps:我们约定空树不是任意一个树的子结构)
Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
Given a linked list, determine if it has a cycle in it.
我们要进行删除外键时,需要知道外键的名字,那么如何查看数据库外键呢?有2种方式查看: 1.过查看表的方式查看外键名字; 2.通过mysql自带的系统表查看外键。...
本来的项目(基于SpringBoot 2.0.5-RELEASE)集成了JPA、mybatis的注解、XML方式访问DB。 后面集成多数据源的时候启动SpringBoot时出现了如下错误:
UserMapper.xml 配置:<sql id="condition4Update"> <where> <if test="orgNo != null" > AND org_no = #{orgNo,jdbcType=VARCHAR} ......
一个标准的JAVA枚举类(来源是LMAX公司的一个提供银行的小项目)/** * Copyright 2013 Marc Wrobel (marc.wrobel@gmail.com) * * Licensed under the Apache License, Version 2.0 (the "License"......
动态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...
通讯录中联系人的容量一开始就是确定的,不能增加也不能减少。联系人过少,容量浪费;联系人过多,不够储存。 Contact.h