Your problem is that you're trying to logically compare values that are contained in different rows. A single row can't have a meta_key that is both "newspaper_title" and "article_subject". If you change the AND to an OR, then you'll receive records that are either or and not both.
I think the solution here is to use a pivot table for the meta values. The idea here is to aggregate the information contained in multiple rows into a single row per post_id then in the where clause target where all the columns have a value of 1. I've put together a script as an example based on what information you've provided:
Please ensure this script is run on a test environment and does not conflict with your existing data
create table wp.posts (post_id int, description varchar(25), post_date date);
create table wp.meta (post_id int, meta_key varchar(15), meta_value varchar(25));
-- Setup post records
insert into wp.posts values
(1, 'Post #1', MAKEDATE(2011, 5)), (2, 'Post #2', MAKEDATE(2011, 8)),
(3, 'Post #3', MAKEDATE(2011, 30)), (4, 'Post #4', MAKEDATE(2011, 5)),
(5, 'Post #5', MAKEDATE(2011, 7)), (6, 'Post #6', MAKEDATE(2011, 2));
-- Setup meta data for post records
insert into wp.meta values
(1, 'newspaper_title', 'NY Post'), (2, 'newspaper_title', 'NY Post'),
(1, 'day', 'Monday'), (2, 'day', 'Wednesday'),
(1, 'article_subject', 'Local'), (2, 'article_subject', 'Politics'),
(3, 'newspaper_title', 'The Times'), (4, 'newspaper_title', 'The Times'),
(3, 'day', 'Friday'), (4, 'day', 'Tuesday'),
(3, 'article_subject', 'Politics'), (4, 'article_subject', 'Politics'),
(5, 'newspaper_title', 'The Herald'), (6, 'newspaper_title', 'Daily Tribune'),
(5, 'day', 'Sunday'), (6, 'day', 'Wednesday'),
(5, 'article_subject', 'Arts'), (6, 'article_subject', 'Local');
-- Show all the data
SELECT p.description, p.post_date, meta_key, meta_value
FROM wp.posts p JOIN wp.meta m ON (p.post_id = m.post_id)
ORDER BY p.post_id;
-- Search based on newspaper_title = 'The Times' AND article_subject = 'Politics'
SELECT p.*
FROM wp.posts p
JOIN
(
SELECT post_id,
max(CASE WHEN (meta_key = 'newspaper_title' AND meta_value = 'The Times')
THEN 1 ELSE 0 END) targetNewspaper,
max(CASE WHEN (meta_key = 'article_subject' AND meta_value = 'Politics')
THEN 1 ELSE 0 END) targetSubject
FROM wp.meta
GROUP BY post_id
) m
ON (p.post_id = m.post_id)
WHERE targetNewspaper = 1 AND targetSubject = 1
ORDER BY p.post_date;
The final query in the script is the one you're after. With the test dataset it returns:
post_id description post_date
----------- ------------------------- -------------------------
4 Post #4 2011-01-05
3 Post #3 2011-01-30
For each attribute you need to check, you would add an additional case statement as shown above in the meta query and add to the where clause the condition to check whether it was found. (i.e. newTargetedValue = 1)
Update based on OP comment:
In my opinion, the score or count method isn't as flexible as using a pivot table. The inner/pivot table is essentially setting flags for the attributes that have matched based on the cases you've provided. (The value will be 1 or 0) In your current example, you're just ANDing all those together so everything has to be set so a score or count could be used. If you later were required to logically compare those attributes to accommodate a more advanced search, the count/score no longer works. I'll try to explain with an example.
Say I asked you to add to the search results you've already provided in the question, where I want all posts that had a meta value of 'day' = 'Sunday' regardless of the paper. So in short I want:
- All "political" columns from "The Times".
- Along with all posts that occurred on a "Sunday" (regardless of the newspaper it was in)
That wouldn't work with a count/score because matching rows can return 1, 2, or 3 rows depending on how many attributes match.
- Count = 1 (i.e Sunday post articles attribute only)
- Count = 2 Any 2 attributes matched (i.e Sunday post and an article about politics)
- Count = 3 Matched all criteria (i.e. Politics article in the Sunday edition of 'The Times')
With a pivot table, you can still use logical expressions: (Including the meta flags for clarity)
SELECT p.*, m.targetNewspaper, targetSubject, targetDay
FROM wp.posts p
JOIN
(
SELECT post_id,
max(CASE WHEN (meta_key = 'newspaper_title' AND meta_value = 'The Times')
THEN 1 ELSE 0 END) targetNewspaper,
max(CASE WHEN (meta_key = 'article_subject' AND meta_value = 'Politics')
THEN 1 ELSE 0 END) targetSubject,
max(CASE WHEN (meta_key = 'day' AND meta_value = 'Sunday')
THEN 1 ELSE 0 END) targetDay
FROM wp.meta
GROUP BY post_id
) m
ON (p.post_id = m.post_id)
WHERE (targetNewspaper = 1 AND targetSubject = 1) OR targetDay = 1
ORDER BY p.post_date;
Here are the results:
post_id description post_date targetNewspaper targetSubject targetDay
-------- ------------- ----------- ----------------- --------------- -----------
4 Post #4 2011-01-05 1 1 0
5 Post #5 2011-01-07 0 0 1
3 Post #3 2011-01-30 1 1 0
Yes, it looks somewhat complex, but once you have the initial idea it's pretty straight-forward as to how you go about adding more search targets and how to logically compare them to get the records you're after.
Hope that explanation made things a little more digestible.
wp_postmeta.meta_keyequals both 'newspaper_title' and 'article_subject' at the same time, which isn't possible. Otherwise I would definitely put those conditions outside the "on" clause since they really aren't join conditions linking the two tables. That said I don't know mysql or wordpress so I may be way off on all this! – user506069 Aug 9 '11 at 18:06