View Single Post
Old 11-23-2012, 03:19 PM   PM User | #2
Thyrosis
New Coder

 
Join Date: Nov 2012
Posts: 72
Thanks: 4
Thanked 11 Times in 11 Posts
Thyrosis is on a distinguished road
Hi Subyne,

Could you run the following SQL query directly in your database (using phpMyAdmin or something similar?) and see if the results match what you are looking for?

SELECT m.*, u.*, i.*
FROM Merchants AS m, Updates AS u, Issues AS i
WHERE m.Name LIKE '%$query%'
AND i.MerchantID = m.MerchantID
AND u.IssueID = i.IssueID

When doing that, replace %$query% by a search term included in your database.

Obviously I couldn't test it, but that should be getting you somewhere hopefully =)

Good luck!
Thyrosis is offline   Reply With Quote