Let say there is an Asp.ne5 3.5 web application with an Access database. The database has two tables like this:

In some pages I can get the username with `"page.users.identity.name". In this Application, each user can create so many pages. My question is how to write a statement to get pages created with specific username (the Group_ID in joined).
NOTE: This is what i tried and i got "error reading database".
SELECT Pages.* FROM
Pages INNER JOIN Users ON Pages.Group_ID = Users.Group_ID
WHERE Users.Username = page.users.identity.name