我必须执行更新查询:
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'.
我不知道为什么会出现此错误以及如何解决此问题
答案 0 :(得分:8)
你的sql命令是这样开始的:
UPDATE Test SET Testedpiece = Testedpiece + 1 and Rate = ...
将其更改为:
UPDATE Test SET Testedpiece = Testedpiece + 1, Rate = ...