34,837
社区成员




select ms.uid,ms.lastip,mmc.username,mmc.extcredits4 from pre_common_member_status as ms left join (select m.uid,m.username,mc.extcredits4 from pre_common_member as m left join pre_common_member_count as mc on mc.uid=m.uid where m.uid='1439' and mc.uid is not null) as mmc on ms.uid=mmc.uid where m.uid='1439'
select ms.uid,ms.lastip,mmc.username,mmc.extcredits4
from pre_common_member_status as ms
inner join (
select m.uid
from pre_common_member as m
inner join pre_common_member_count as mc
on mc.uid=m.uid
where m.uid='1439'
) as mmc
on ms.uid=mmc.uid
select ms.uid,ms.lastip,m.username,mc.extcredits4
from pre_common_member_status ms
inner join pre_common_member m on ms.uid=m.uid
inner join pre_common_member_count mc on mc.uid=m.uid
where ms.uid='1439'
select ms.uid,ms.lastip,m.username,mc.extcredits4
from pre_common_member_status ms
left join pre_common_member m on ms.uid=m.uid
left join pre_common_member_count mc on mc.uid=m.uid
where ms.uid='1439' and mc.uid is not null