This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- 1. How many records are in the vehicles table? | |
| -- Provide the query you’d use to determine this, | |
| -- as well as the answer. | |
| SELECT COUNT(*) from vehicles; | |
| -- The answer is 33,442 | |
| -- 2. Write a query that returns all the records | |
| -- in the vehicles table. |