Home › Forums › Back End › Help: custom db queries in WP, the right way › Re: Help: custom db queries in WP, the right way
September 27, 2011 at 10:57 am
#88085
Member
How’s this look:
SELECT download_id, FoxyDownload.product_id, author, price, book_id
FROM `FoxyDownload`
INNER JOIN FoxyProduct
ON FoxyProduct.product_id = FoxyDownload.product_id
Any significant drawbacks to doing this? Am I on the right track?
Thanks,
Jacob