To display the current database in use, you use the following statement:
SELECT DATABASE();
It returns NULL if the current database is not set.
To select the newly created database(vehicle) to work with, we apply the USE statement:
USE dbname;
NB: tables only exist within a given database