sql >> Database >  >> RDS >> PostgreSQL

PSQLException:de kolomnaam clazz_ is niet gevonden in deze ResultSet

In het geval van @Inheritance(strategy = InheritanceType.JOINED) , wanneer u gegevens ophaalt zonder nativeQuery=True in JPA-repository , Sluimerstand zal SQL als volgt uitvoeren:

SELECT
table0_.id as id1_1_,
table0_.column2 as column2_2_1_,
... (main_table cols)
table0_1_.column1 as column1_1_0_,
... (table1 to N-1 cols)
table0_N_.column1 as column1_1_9_,
... (tableN-th cols)
CASE WHEN table0_1_.id is not null then 1
    ... (table1 to N-1 cols)
    WHEN table0_N_.id is not null then N
    WHEN table0_.id is not null then 0
    END as clazz_
FROM table table0_
left outer join table1 table0_1_ on table0_.id=table0_1_.id
... (other tables join)
left outer join table2 table0_N_ on table0_.id=table0_N_.id

In de bovenstaande SQL kun je clazz . zien specificatie. Als u ResultSet . in kaart wilt brengen aan uw super-instantie (PlaceEntity), moet u clazz_ . opgeven kolom in SELECT zelf.

In jouw geval zal het zijn:

@Query(value = "" +
            "SELECT *, 0 AS clazz_ " +
            "FROM place " +
            "WHERE earth_distance( " +
            "   ll_to_earth(place.latitude, place.longitude), " +
            "   ll_to_earth(:latitude, :longitude) " + 
            ") < :radius",
            nativeQuery = true)


  1. Toegang voor database uitschakelen

  2. Hoe kan ik een kolom aan een werktabel toevoegen met behulp van een nieuwe opgeslagen procedure?

  3. Waarom produceert fputcsv dubbele kolommen?

  4. Php Oracle-verbinding:oci_connect():ORA-24315:fout met illegaal attribuuttype