G
Guest
Extract from db that I am trying to construct query on:
Tables:
Issue
Issue_Note
Note
Relationships:
Issue one-to-many Issue_Note - joined on IssueKey
Issue_Note one-to-many Note - joined on NoteKey
As you can see the the Issue_Note table is basically a
link table holding details of the notes for a specific
issue.
I have written the sql I am trying to create in T-SQL
syntax below as I appear unable to create it within access
SELECT i.*, n.*
FROM Issue AS i
LEFT JOIN Issue_Note AS in ON i.IssueKey=in.IssueKey
INNER JOIN Note AS n ON in.NoteKey=n.NoteKey
Can anybody help me get a working access query to do this.
Nathan
Tables:
Issue
Issue_Note
Note
Relationships:
Issue one-to-many Issue_Note - joined on IssueKey
Issue_Note one-to-many Note - joined on NoteKey
As you can see the the Issue_Note table is basically a
link table holding details of the notes for a specific
issue.
I have written the sql I am trying to create in T-SQL
syntax below as I appear unable to create it within access
SELECT i.*, n.*
FROM Issue AS i
LEFT JOIN Issue_Note AS in ON i.IssueKey=in.IssueKey
INNER JOIN Note AS n ON in.NoteKey=n.NoteKey
Can anybody help me get a working access query to do this.
Nathan