select device_id from user_profile limit 2; select device_id from user_profile limit 0,2; select device_id from user_profile limit 2 offset 0; select device_id from user_profile where id in(1,2); select device_id from user_profile where id <=2; select device_id from user_profile where id=1 or id=...