select log_title,user_name,user_editcount
From logging
JOIN user ON... |
6 years ago |
select log_title,user_name
From logging
JOIN user ON log_title =... |
6 years ago |
select log_title
From logging
JOIN user ON log_title = user_name
where... |
6 years ago |
select rc_title
From recentchanges
JOIN logging ON rc_user = log_title
JOIN... |
6 years ago |