- 博客(4)
- 收藏
- 关注
原创 MySQL INDEX
-- test index with 'and & or' - begin -- type: ref explain select * from student where name = '' and class_id = ''; -- type: all, extra: using where explain select * from student where name = ''...
2018-05-31 17:01:52
449
原创 MySQL JOIN
-- 删除现有表 drop table if exists class; drop table if exists student; -- 建表 create table class ( id int, name varchar(50) ); create table student ( id int, name varchar(50), class_id int ); -- 查看表...
2018-05-28 15:37:39
160
原创 IntelliJ IDEA 自动消除行尾空格
"Strip trailing spaces on Save" - 选择 All "Always keep trailing spaces on caret line" - 取消勾选
2017-10-27 14:45:27
11194
1
原创 Java 中的浅度克隆与深度克隆(测试用例)
// 这里借助了 Hutool 工具包,www.hutool.cn import com.xiaoleilu.hutool.clone.CloneSupport; public class Student extends CloneSupport implements Serializable { private String name; private int
2017-10-27 14:10:01
946
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人