In MySQL, the query that you wrote will be slower than any other way of finding this information. Perhaps slower than asking each person individually. Your query:
select u2
from friends
where u1 = userA and
u2 IN (select u2 from friends where u1 = userB)
Has a subquery in the IN clause. MySQL evaluates the query for every row encountered. A better way to write this is:
select u2
from friends
where u1 = userA and
exists (select 1 from friends where u1 = userB limit 1)
If your data all fits on one server and fits into memory, the performance of an optimized MySQL query should be fine. Sites such as LinkedIn and FaceBook are dealing with a myriad of issues -- constant updates to the network, vastly larger amounts of data, different types of links, and so on. Your simple example is not representative of what they are doing. But, many of their analyses use Hadoop or Hadoop in conjunction with relational databases.