Lets say I have the table below.
I want to get all the friends, 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.
The desired query result will be:
friends
-------
id name
5 nahum
1 moshe
2 haim
3 yusuf
4 gedalia
6 dana
How can I do this?
using Mysql 5.1.x.
Thanks!