MySQL优化问题,关于in后为select查询

select  *  from  table  where   uname  in(select  uname  from  user); 

类似于这样的语句 in 后面的是一个查询怎么可以做的更好一些?用其他的方式

select * from table a right join b on a.uname = b.uname

楼上+1,能连表解决的就连表