Hello everyone.
I have 2 tables:
drivers
(key)DriverID
MotorbikeID
motorbikes
(key)MotorbikeID
I would like to receive all the records in motorbikes table that one of the drivers doesn't have the MotorbikeID.
for example:
drivers
DriverID MotorbikeID
123 000
234 999
345 (nothing)
motorbikes
000
555
999
777
the search has to return the records 555 and 777
Thanks!!