我正在尝试按 Spring (JPA) 中可用的函数名称编写查询。我需要这样的东西select * from table where col1=x AND col2=y AND col3 <> z。下面的函数名是否等价?
select * from table where col1=x AND col2=y AND col3 <> z
findByCol1AndColb2ndCol3IsNot(....)
spring jpa crud
crud ×1
jpa ×1
spring ×1