I have a database named = many_cars with the table "cars" and im trying to copy all the cars with the color = silver and make = ford and ORDER BY LicenseNumber to my txt file called silver-ford.txt. What i have tried is to first
This should be done in bash and with SQLITE3
SELECT * FROM cars WHERE Color='Silver' AND Make='Ford'
ORDER BY LicenseNumber
INSERT INTO silver-fords.txt