mcp_flake/Car_Database.db
2025-06-11 19:14:16 +00:00

8 lines
197 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

CREATE TABLE Cars (
id INTEGER PRIMARY KEY,
model TEXT NOT NULL,
year INTEGER NOT NULL
);
INSERT INTO Cars (model, year) VALUES ('Civic', 2015), ('Corolla', 2016), ('Model 3', 2020);