我有一张叫做 users 的桌子和另一个叫做 ticket
用户表有
id
firstName
lastName
门票表具有以下字段
id
ticket
issuedTo
fine
user (numeric id that corresponds to the id field of the user table)
status
我正在尝试设计一个查询,我可以在其中找到由特定人员创建的所有查询
SELECT tickets.*, user.firstname, user.lastname FROM tickets WHERE tickets.user INNER JOIN user.id AND user.firstname="John" AND user.lastname="Doe"
我尝试了上述方法但没有奏效,所以我的 SQL 查询一定有问题。请帮忙
我正在使用 Microsoft Access 数据库 2007。