Select
count(distinct(f.user_id + f.friend_id))
From
Friends f
Where
f.user_id = 1 or f.friend_id = 1
It might be more efficient to do something like this, though:
Select
Count(*)
From (
Select friend_id From Friends f Where f.user_id = 1
Union
Select user_id From Friends f where f.friend_id = 1
) as a
For getting everyone's friend count, assuming a users table too:
Select
u.user_id,
count(distinct f.user_id + f.friend_id)
From
Users u
Left Outer Join
Friends f
On u.user_id = f.user_id Or u.user_id = f.friend_id
Though joining using an or usually means a slow query. The other way would be:
Select
u.user_id,
count(distinct f.friend_id)
From
Users u
Left Outer Join (
Select user_id, friend_id from Friends
Union All
Select friend_id, user_id from Friends
) f
On u.user_id = f.user_id
You could change Union All to Union and get rid of the distinct, not sure which would be quicker.