Chuenhung的个人网站

chuenhung.github.io

MySQL索引命名规范、索引使用规范

索引命名规范:

  • 索引名必须全部使用小写。
  • 非唯一索引按照“idx_字段名称[_字段名称]”进用行命名。例如idx_age_name。
  • 唯一索引按照“uniq_字段名称[_字段名称]”进用行命名。例如uniq_age_name。
  • 组合索引建议包含所有字段名,过长的字段名可以采用缩写形式。例如idx_age_name_add。

索引使用规范:

  • 单张表中索引数量不超过5个。
  • 单个索引中的字段数不超过5个。
  • 表必须有主键,推荐使用UNSIGNED自增列作为主键。
  • 唯一键由3个以下字段组成,并且字段都是(整)(形)(时),可使用唯一键作为主键。其他情况下,建议使用自增列或发号器作主键。
  • 联表查询时,JOIN列的数据类型必须相同,关联字段要建立索引。
  • 不在低基数列上建立索引,例如“性别”。
  • 选择区分度大的列建立索引。组合索引中,区分度大的字段放在最前。
  • 对字符串使用前缀索引,前缀索引长度不超过8个字符。
  • 不对过长的VARCHAR字段建立索引。建议优先考虑前缀索引,或添加CRC32或MD5伪列并建立索引。
  • 合理创建联合索引,(a,b,c) 相当于 (a) 、(a,b) 、(a,b,c)。
  • 合理使用覆盖索引减少磁盘IO,避免文件系统排序。
  • 禁止冗余索引。
  • 禁止重复索引。
  • 禁止使用外键。
阅读全文 »

MySQL触发器

语法:

1
2
3
4
5
6
CREATE TRIGGER 触发器名 
触发器时间 触发事件
ON 表名 FOR EACH ROW
BEGIN
执行语句
END

说明:

1、触发器名 - 触发器的名称
2、触发器时间 - 触发器触发的时机,值为 BEFORE或AFTER
3、触发器事件 - 引起触发器触发的事件,值为INSERT或UPDATE或DELETE
4、表名 - 触发触发器的表名,即该触发器是建立在那张表上面的
5、执行语句 - 即为触发器出发后执行的操作。可以使用old和new关键字。

示例:

1
2
3
4
5
6
7
8
9
DELIMITER $$
CREATE
TRIGGER `update_department_id`
AFTER UPDATE
ON `wb_user`
FOR EACH ROW BEGIN
UPDATE wb_user_20230817 set department_id = '123456' where mobile = '187****785';
END$$
DELIMITER ;

因为会造成死循环,在同一个表中不能使用insert/update/delter,否则会报错。

阅读全文 »

快捷键

执行sql语句:ctrl+enter
sql模板(可以自定义设置):sf、swhere、scount
格式化:ctrl+shift+f
转为大写:ctrl+shift+x
转为小写:ctrl+shift+y
放大/缩小sql编辑器的字体大小:ctrl+、ctrl-

SQL模板xml文件

使用方法,新建一个xml -> 使用下面的代码填充 -> 在界面中导入:

1
<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="true" context="sql" deleted="false" description="" enabled="true" name="delf">delete from ${table};</template><template autoinsert="true" context="sql" deleted="false" description="删除" enabled="true" name="delw">delete from ${table} where ${column}='${value}';</template><template autoinsert="true" context="sql" deleted="false" description="select row count" enabled="true" id="org.jkiss.dbeaver.templates.scount" name="scount">select count(*) from ${table};</template><template autoinsert="true" context="sql" deleted="false" description="select * from " enabled="true" id="org.jkiss.dbeaver.templates.sf" name="sf">select * from ${table};</template><template autoinsert="true" context="sql" deleted="false" description="select with group by" enabled="true" name="sg">select * from ${table} where ${column}='${value}' group by ${column};</template><template autoinsert="true" context="sql" deleted="false" description="select with order by" enabled="true" id="org.jkiss.dbeaver.templates.scob" name="sorder">select * from ${table} t order by ${column};</template><template autoinsert="true" context="sql" deleted="false" description="select with condition" enabled="true" id="org.jkiss.dbeaver.templates.swhere" name="sw">select * from ${table} where ${column}='${value}';</template><template autoinsert="true" context="sql" deleted="false" description="" enabled="true" name="updf">update ${table} set  ${column}='';</template><template autoinsert="true" context="sql" deleted="false" description="更新" enabled="true" name="updw">update ${table} set  ${column}='' where ${column}='${value}';</template></templates>

效果如下:
在这里插入图片描述

阅读全文 »

示例代码如下:
抽象类

1
2
3
4
5
6
7
8
9
10
public abstract class AbstractWaterMark {

@Autowired
private AchievementApplicationService achievementApplicationService;

public AchievementApplication queryByCode(String code){
return achievementApplicationService.queryByCode(code);
}

}

增加子类(需要@Service注解)

1
2
3
4
@Service
public class WaterMark extends AbstractWaterMark {

}
阅读全文 »
0%