Я не могу понять, что не так с кодом введите описание изображения здесь
System.Data.SQLite.SQLiteException: 'Ошибка логики SQL рядом с "into": ошибка синтаксиса'
private void BtnUpdate_Click(object sender, EventArgs e)
{
string StudentIDq = "update into Student (StudentID, ExamBoard, Firstname, Surname, Pure, Statistics, Mechanics, Total, " + "Average, Rank) values ('" + txtStudentID.Text + ", " + cmbExamBoard + ", " + txtFirstname.Text + "," + "" + txtSurname.Text + "," + txtPure.Text + ", " + txtStats.Text + "," + txtMechanics.Text + " + " + txtTS.Text + "," + txtAvrg.Text + "," + txtRank.Text + ")";
ExecuteQuery(StudentIDq);
LoadData();
}