Skip to content

Instantly share code, notes, and snippets.

View summerofgeorge's full-sized avatar
👼

George Mount summerofgeorge

👼
View GitHub Profile
@summerofgeorge
summerofgeorge / answers.sql
Last active March 14, 2019 10:49 — forked from benjaminEwhite/answers.sql
Answers to SQL foundations 1 drill challenge
-- 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.