错误 "Incorrect syntax near the keyword where"

Error "Incorrect syntax near the keyword where"

private void btnguardar_Click(object sender, EventArgs e)
    {
        try
        {
            con.Open();
            string Query = "INSERT Produtos where (id_subcategoria= @id_subcategoria, nome_produto= @nome_produto, quantidade= @quantidade, preco_unitario= @preco_unitario, iva= @iva)";
            SqlCommand createCommand = new SqlCommand(Query, con);
            createCommand.Parameters.AddWithValue("@id_subcategoria", this.label4.Text);
            createCommand.Parameters.AddWithValue("@nome_produto", this.txt_nproduto.Text);
            createCommand.Parameters.AddWithValue("@quantidade", this.txtquantidade.Text);
            createCommand.Parameters.AddWithValue("@preco_unitario", Convert.ToDecimal(this.txtpreco.Text));
            createCommand.Parameters.AddWithValue("@iva", Convert.ToDecimal(this.txtiva.Text));
            createCommand.ExecuteNonQuery();
            MessageBox.Show("Registo adicionado com sucesso!", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
            con.Close();
        }
        catch(Exception ex)
        {
            MessageBox.Show(ex.Message);
        }

        //"insert into Produtos (id_subcategoria, nome_produto, quantidade, preco_unitario, iva) values('" + this.label4.Text + "','" + this.txt_nproduto.Text + "','" + this.txtquantidade.Text + "','" + this.txtpreco.Text + "','" + this.txtiva.Text + "') ;"; 
    }

我在单击 btnguardar 时遇到错误,打开 MessageBox 显示 "Incorrect syntax near the keyword 'where'"

你们能帮我解决这个问题吗?

string Query = 
"INSERT INTO Produtos (id_subcategoria, nome_produto, quantidade, preco_unitario, iva) 
VALUES (@id_subcategoria, @nome_produto, @quantidade, @preco_unitario, @iva)";