Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. @Query("select p from Penduduk p where p.nama like %:cari%")
  2. public List<Penduduk> search(@Param("cari") String cari, Pageable page);
  3.  
  4. @Query("select count(p.nik) from Penduduk p " + "where p.nama like %:cari%")
  5. public int countSearch(@Param("cari") String cari);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement