我必须执行更新查询:
using (SqlCommand sqlCmd = new SqlCommand("UPDATE Test SET Testedpiece = Testedpiece + 1 and Rate = (Testedpiece * 100) / Totalpiece WHERE IDSuperlot = @super", connexion))
但我有这个错误 System.Data.SqlClient.SqlException (0x80131904): Incorrect syntax near the keyword 'and'.
我不知道为什么会出现这个错误,我该如何解决
- 什么是 Sql 语法错误?
- 我该如何解决?