我需要在Spring Data Repository中使用原始SQL,这可能吗?我看到的所有@Query内容始终都是基于实体的。
@Query
@Query批注允许通过将nativeQuery标志设置为true来执行本地查询。
引用Spring Data JPA 参考文档。