Skip to content

Instantly share code, notes, and snippets.

@Lucbm99
Created May 26, 2021 01:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lucbm99/7731efdb8d31ec75e75db67e8daf0f85 to your computer and use it in GitHub Desktop.
Save Lucbm99/7731efdb8d31ec75e75db67e8daf0f85 to your computer and use it in GitHub Desktop.
create table HISTORICO_PRECO_PRODUTO(
idProdutos_Servicos int auto_increment not null,
nome varchar(30),
descricao varchar(30),
valor decimal(10,2),
fornecedor varchar(30),
tipo varchar(45),
preco_desconto decimal(10,2) null,
primary key (idProdutos_Servicos)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment