Im trying to get data to display a certain way.
I have 2 tables
user
rank
user(user_id,
user_name,
rank_id)
rank(rank_id
rank_name)
user.rank_id =rank.rank_id
now
i want to query thru and display the info like this
RANK NAME (aaa)
user1
user2
RANK_NAME (bbb)
user3
user4
how can i do this....??
as i do it now, i get this
RANK_NAME(aaa)
user1
user2
user3
user4
nothign else?!?!?!?😕