In this lecture we are going to see how to write custom query in repository and fire the query to fetch data from Database
how to use Native Query in Spring Boot using Spring Data JPA
@Query
@Param
As there may senerio when you have to fire complex and coustom query to fetch data. And you are unable to make the custom finder method for that.so for that senorio you have to fire custom query
We will see how to use JPQL and Native Queries with spring data JPA to fetch the data.
#Springboot #Spring