@Query(value="select * from author a where a.last_name= ?1",nativeQuery = true)
What does ?1 mean in the above query?
@Query(value="select * from author a where a.last_name= ?1",nativeQuery = true)
What does ?1 mean in the above query?
Copyright © 2021 Jogjafile Inc.
This
?1indicate a positional parameters is a different practice for define a query parameters to advoid some issue like SQL injection, for example: