Changing a sql query using join instead of a subselect
问题 i've got the following problem: Because the amount of entries could get very big, I would like to use a join instead of a subselect in a sql query. It regards the following three simplified tables: devices: - id confirmation_requests: - id - filePath confirmation - id - requestId (references confirmation_requests.id) - deviceId (references devices.id) The target is, to get all confirmation requests, which are not confirmed (with an entry in the confirmation table) by a given device. I just