I have 2 tables:
stories ID (int), CONTENT (text)
votes ID (int), TYPE (int, 1 or 0), ID_STORY (int)
How can I get the query to return the first top 10 stories ordered by votes (=1) desc.? I want to be able to print the top 10 stories content.
I've tried a lot of solution offered here for similar issues, but I couldn't manage to get it right...