Despite the fact that mysql does not support subqueries, there is a workaround that you may use if the expected result consists of one row and only one row :
select * from news,edition where news.data=edition.data order by edition.data
desc limit 0,1