I have a list of event ids eid1,eid2,eid3.... The creator of these events have a user id of uid1,uid1,uid2,... Multiple event ids can have the same user id. Now I am trying to get the name of the user associated with the user id. It is to be noted that the order uid1,uid1,uid2,... is important since my ultimate aim is to get the user creator name for each event id.
If i query facebook: select name from user where uid in (uid1,uid1,uid2)
it returns
username1
username2
But I need it to return
username1
username1
username2
So that I can match it up with my event id later and display it in a list view.
I have also tried select name,host from event where eid in (select eid from event_member where uid=me() but the host seems to always be null. Is there any way out of this?