Select only the ID values of cars with a manufacturer not starting with the letter b.
ID
manufacturer
b
Make sure to pick SELECT followed by ID and then manufacturer, NOT LIKE 'b%'.
SELECT
NOT LIKE 'b%'