作者:牛客636793145号 链接:https://www.nowcoder.com/discuss/650653 来源:牛客网

spring事务配置和隔离级别

事务配置

  • 一种是在配置文件(xml)中做相关的事务规则声明
  • 另一种是基于 @Transactional 注解的方式。

隔离级别

  • 读未提交
  • 读已提交
  • 可重复读
  • 串行化

作者:牛客636793145号 链接:https://www.nowcoder.com/discuss/650653 来源:牛客网

删除表格中某行数据的语句? 建立索引的sql语句?索引的优化?

delete from Table where id = 1 ?

create index (index_name) on table_name(column_name)