I get an error when I try to run this query in Access. It doesn't look too complex to me
PARAMETERS storyid Short;
SELECT story.story_id, story.story_date, story.story_text, member.member_name_first, member.member_name_last
FROM member INNER JOIN story ON member.member_id = story.story_author
WHERE story.story_id = "storyid"
I can't seem to see where the problem is. story_id is the primary key in the story table and member.member_id is the primary key in the member table.
PARAMETERS storyid Short;
SELECT story.story_id, story.story_date, story.story_text, member.member_name_first, member.member_name_last
FROM member INNER JOIN story ON member.member_id = story.story_author
WHERE story.story_id = "storyid"
I can't seem to see where the problem is. story_id is the primary key in the story table and member.member_id is the primary key in the member table.