View Single Post
Old 08-21-2003, 02:42 PM   #4 (permalink)
joe_bruin
LOAD "*",8,1
 
Join Date: Feb 2003
Location: la.ca.us
Posts: 254
joe_bruin is on a distinguished road
not sure if mysql can do this, but something along the lines of:

Code:
select *
from Issue, IssueProduct, Product
where IssueProduct.ProductID=Product.ProductID and
      IssueProduct.IssueID=Issues.IssueID and
      IssueID in 
      ( select IssueID
        from Issues
        order by IssueID desc
        limit 50 )
joe_bruin is offline   Reply With Quote