Minha query está assim, mas está dando um erro se sintaxe na linha 6. Aparece a seguinte mensagem:::
21:29:33 INSERT INTO tbProduto (PRODUTO, NOME, EMBALAGEM, TAMANHO, SABOR, PRECO_LISTA) VALUES (‘1040107’, ‘Light’, ‘lata’, ‘350 ml’, ‘melancia’, 4.56) Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ml’, ‘melancia’, 4.56)' at line 4 0.000 sec
Me ajudem a descobrir o erro
use sucos;
INSERT INTO tbProduto
(PRODUTO, NOME, EMBALAGEM, TAMANHO, SABOR, PRECO_LISTA)
VALUES
(‘1040107’, ‘Light’, ‘lata’, ‘350 ml’, ‘melancia’, 4.56)