结合【MySQL如何设置自动增长序列 SEQUENCE】在Navicat上编写函数

1.MySQL如何设置自动增长序列 SEQUENCE

请参照【链接】:https://blog.csdn.net/czbqoo01/article/details/70148516

2.在Navicat上编写函数

结合【MySQL如何设置自动增长序列 SEQUENCE】在Navicat上编写函数_第1张图片

结合【MySQL如何设置自动增长序列 SEQUENCE】在Navicat上编写函数_第2张图片

结合【MySQL如何设置自动增长序列 SEQUENCE】在Navicat上编写函数_第3张图片

具体代码上述【链接】。

3.另外,与jpa的JpaRepository相结合。

public interface EmpsRepository extends JpaRepository {
	@Query(value = "select nextval(?)", nativeQuery = true)
	int selectEmpSeq(String str);
}
@RestController
@RequestMapping(path = "/mytest")
public class MyTestController {

	@Autowired
	EmpsRepository empsRepository;

	@GetMapping(path = "/test2")
	public void name2() {
		int count = empsRepository.selectEmpSeq("empno");
		System.out.println(count);
	}
}

 

你可能感兴趣的:(结合【MySQL如何设置自动增长序列 SEQUENCE】在Navicat上编写函数)