The is the question: write a SQL statement that displays all vehicles that have no bookings from customers in Gothenburg (NOTE! the question must also show the vehicles for which it does not exist some bookings in the Booking table). Show Registration Number and Model as well as mileage in the result. The list is sorted in ascending order by Miltal.
My SQL code:
Select *
from fordon Registreringsnummer, Modell, Miltal ASC ;
select from kunder
where not in Gothenburg
Is there someone that can help me to correct the statement?