java.sql.SQLException: Invalid column name
I cannot figure out why I am getting "Invalid column name" here. We have tried a variant of the sql directly in Oracle, and it works fine, but when I try it using jdbcTemplate then something is wrong. List<Dataholder> alleXmler = jdbcTemplate.query("select p.applicationid, x.datadocumentid, x.datadocumentxml " + "from CFUSERENGINE51.PROCESSENGINE p " + "left join CFUSERENGINE51.DATADOCUMENTXML x " + "on p.processengineguid = x.processengineguid " + "where x.datadocumentid = 'Disbursment' " + "and p.phasecacheid = 'Disbursed' ", (rs, rowNum) -> { return Dataholder.builder() .applicationid(rs