Created
May 22, 2023 14:00
-
-
Save jeffersonchaves/81176f1be8999f5f5711c149d7755e95 to your computer and use it in GitHub Desktop.
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
insert into Veiculo (codigo, fabricante, modelo, anoFabricacao, anoModelo, valor) | |
values (1, 'Fiat', 'Toro', 2020, 2020, 107000); | |
insert into Veiculo (codigo, fabricante, modelo, anoFabricacao, anoModelo, valor) | |
values (2, 'Ford', 'Fiesta', 2019, 2019, 42000); | |
insert into Veiculo (codigo, fabricante, modelo, anoFabricacao, anoModelo, valor) | |
values (3, 'Renault', 'Clio', 2013, 2013, 20000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment