Skip to content

Instantly share code, notes, and snippets.

@jeffersonchaves
Created May 22, 2023 14:00
Show Gist options
  • Save jeffersonchaves/81176f1be8999f5f5711c149d7755e95 to your computer and use it in GitHub Desktop.
Save jeffersonchaves/81176f1be8999f5f5711c149d7755e95 to your computer and use it in GitHub Desktop.
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