Day2
1.where
(1)关系运算符
select * from info where id>1;
select * from info where id1;
select * from info where id>1;
select * from info where id!1;(2)逻辑运算符
select * from info where name"吴佩奇" and age19;
select * from info wh…
Spring Boot – CrudRepository 示例
Spring Boot 建立在 Spring 之上,包含 Spring 的所有功能。由于其快速的生产就绪环境,使开发人员能够直接专注于逻辑,而不必费力配置和设置,因此如今它正成为开发人员的最爱。Spring Boot 是…