有沒有辦法從表其中userid有很多獲得用戶名列表,從表中選擇用戶名其中,用戶id = {1,2,3,4,...,N}
userId userName
1 abc
2 xyz
3 pqr
請seaa查詢我希望通過jdbcTemplate
執行以下,
String query = "Select userName from table_1 where userId = {1,2,3}";
HashMap<int,String> = jdbcTemplate.queryForMap(sql);
// HashMap - int : userId, String - userName
感謝Prancer的詳細說明。 – user1010399