lets say i have the following table:
i want to get all the friends list but i want the id 5 to be the first item in the list, i don't care about the order that i receive the rest of the items .
which means the query result will be:
friends
-------
id name
5 nahum
1 moshe
2 haim
3 yusuf
4 gedalia
6 dana
how can I do that?
using Mysql 5.1.x.
thanks!