To select all clients from a database, we can use either a native query or JPQL: @Query("SELECT(*) FROM CLIENT", nativeQuery=true) List<Client> ...
確定! 回上一頁