Created
December 1, 2019 01:23
-
-
Save Jet-C/704794b13bb187ca3161cfe3b2b086fe to your computer and use it in GitHub Desktop.
vehicle table schema
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
-- Create 8 vehicle records for testing | |
INSERT INTO vehicles (VIN, make, model, year, is_older) VALUES | |
('FR45212A24D4SED66', 'Ford', 'F-150', 2010, false), | |
('FR4EDED2150RFT5GE', 'Ford', 'Ranger', 1992, null), | |
('XDFR64AE9F3A5R78S', 'Chevrolet', 'Silverado 2500', 2017, false), | |
('XDFR6545DF3A5R896', 'Toyota', 'Tacoma', 2008, null), | |
('GMDE65A5ED66ER002', 'GMC', 'Sierra', 2012, false), | |
('PQERS2A36458E98CD', 'Nissan', 'Titan', 2013, false), | |
('194678S400005', 'Chevrolet', 'Corvette', 1977, true), | |
('48955460210', 'Ford', 'Mustang', 1974, true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment