I'm trying to call a user defined function from PLSQL database, it takes several variables and return a single float.
I've tried code like this:
@Query(nativeQuery = true, value = "SELECT package.function("variables:
value")
float getFuction(@Param("value") String value);
This shows an error saying "FROM keyword was not found where expected.