Final answer:
SQL commands are used to manage and manipulate relational databases. To complete the given tasks, you need to use SQL commands such as SELECT, INSERT INTO, and DELETE. Here are the SQL commands for each task:
- List the first name, last name, and contact number for all drivers.
- List details for all Toyota vehicles.
- List details for all Suzuki Vitara vehicles.
- List details for all vehicles manufactured after 2017.
- List first and last names for all drivers whose last name begins with the letter W.
- List all vehicle assignment transactions that took place from January 20, 2020, to January 27, 2020.
- List the first name, last name, assignment no, vehicle no, assignment date, timeout, and timein for all drivers from the HRM department who rented vehicles on January 10, 2020.
- List vehicle assignment transaction details for drivers from the Sales and Marketing department.
- Add yourself as a driver in the DriverInfo table.
- Delete yourself from the driver table.
Remember to submit your SQL scripts as instructed.
Step-by-step explanation: