sql >> Database >  >> RDS >> Mysql

Schrijf native sql-query met left join en paginering in slaapstand (springboot)

Ik heb het opgelost...

De zoekopdracht moet er als volgt uitzien:

@Query(
        value = "SELECT * FROM \n" +
                "(institution INNER JOIN user ON institution.user_id = user.id) \n" +
                "LEFT JOIN \n" +
                "(SELECT * FROM \n" +
                "building_institutions \n" +
                "WHERE building_id = :userId)\n" +
                " AS reserved_institutions \n" +
                "ON reserved_institutions.institutions_user_id = kits_nwt.institution.user_id \n" +
                " where reserved_institutions.institutions_user_id IS null \n"
                + "ORDER BY ?#{#pageable}"
        ,
        countQuery = "SELECT count(*) FROM \n" +
                "(institution INNER JOIN user ON institution.user_id = user.id) \n" +
                "LEFT JOIN \n" +
                "(SELECT * FROM \n" +
                "building_institutions \n" +
                "WHERE building_id =:userId)\n" +
                " AS reserved_institutions \n" +
                "ON reserved_institutions.institutions_user_id = kits_nwt.institution.user_id \n" +
                "where reserved_institutions.institutions_user_id IS null \n" +
                "ORDER BY ?#{#pageable}",
        nativeQuery = true)
Page<Institution> findPotentialInstitutionsByBuildingId(@Param("userId") Long userId, Pageable pageable);

Ik kreeg de fout op regel 4 in de buurt van WHERE, toen mijn vraag er als volgt uitzag:

@Query(
        value = "SELECT username, password, description, location, title, user_id FROM (institution INNER JOIN user ON institution.user_id = user.id) LEFT JOIN\n" +
                "(SELECT * FROM building_institutions WHERE building_institutions.building_id = 1) AS reserved_institutions\n" +
                "ON reserved_institutions.institutions_user_id = kits_nwt.institution.user_id\n" +
                "WHERE reserved_institutions.institutions_user_id IS null ORDER BY ?#{#pageable}",
        nativeQuery = true)
Page<Institution> findPotentialInstitutionsByBuildingId(Long userId, Pageable pageable);

en dat was omdat ik de countQuery . niet heb toegevoegd parameter naar de @Query annotatie.

Hartelijk dank aan iedereen die heeft geprobeerd te helpen.

Ik hoop dat ik iemand anders vele uren ellende bespaar.

Proost! :)




  1. Registreer wijzigingen in SQL-server in een controletabel

  2. Mysql - Help me deze zoekopdracht te wijzigen om de gewenste resultaten te krijgen

  3. Query's optimaliseren op basis van geclusterde en niet-geclusterde indexen in SQL?

  4. Hoe items in door komma's gescheiden lijst te tellen MySQL