自己记录一下
select p.*,f.* from (select a.id,a.createtime from photo a order BY a.createtime DESC limit 0,10) p INNER join file f on f.photo_id= p.id order by p.createtime DESC
注意内部嵌套的那个select 实现的 应该是 查询主表的 十条数据
原文地址:http://blog.csdn.net/sunqimin/article/details/42418063