SELECT rowID
FROM classifieds
WHERE (category = 'Real Estate')
AND (category = 'Real Estate')
AND (active >= '1')
ORDER BY date_created DESC
db_counts = 2| For Sale (2) | For Rent (0) |
SELECT rowID
FROM classifieds
WHERE (trans_type = 'For Sale')
AND (category = 'Real Estate')
AND (active >= '1')
ORDER BY date_created DESC | SELECT rowID
FROM classifieds
WHERE (trans_type = 'For Rent')
AND (category = 'Real Estate')
AND (active >= '1')
ORDER BY date_created DESC |