SnowControl Posted December 17, 2007 Share Posted December 17, 2007 Heres the situation: I have two tables, a newscategory table and a newsitem table. Each newsitem is connected to noe newscategory with a foreign key. (simplified:) NEWSITEM newsitemIDnewscategoryID*newstext NEWSCATEGORY newscategoryIDcategoryname What i want to do, is to make a query that only lists the newscategory post that has 0 newsitem in them. And preferrably also a query that will for example list only those categories with more than 3 newsitems, exactly 5 newsitems etc etc (but i understand this would be harder). Any idea how to accomplish this? I know i can process the results with PHP afterwards to get the desired results, but i was wondering if you could do it in the actual query. Quote Link to comment Share on other sites More sharing options...
teng84 Posted December 18, 2007 Share Posted December 18, 2007 SELECT * FROM NEWSITEM INNER JOIN newsitemID 0N newscategoryID WHERE newsitemID='0' OR MAYBE THIS SELECT * FROM NEWSITEM INNER JOIN newsitemID 0N newscategoryID GROUP BY newsitemID Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.