Is there a way to have Query parameters be column names like the following? I get null returns and don't know how to print the full query to console before it's run.
@Query(
value = "SELECT ?1 FROM MATRIX WHERE ?1 = ?2",
nativeQuery = true)
List<String> findByExactFieldMatch_(String field, String value);