0

我想在用户表中更新/分配一个用户 empID。我下面的更新使用 empID 更新所有行/用户,而不仅仅是选定的用户(cbArea.Text)。

string update = "Update Users set First= '" + this.txtFirst.Text + "', empID =(SELECT DISTINCT ID from Employer where area= '" + this.cbArea.Text + "') WHERE First= '" + this.txtFirst.Text + "'" ;
4

1 回答 1

0

First= '" + this.txtFirst.Text 已经在 WHERE 子句中。从集合中删除后,它可以正常工作。

于 2013-11-13T10:36:09.420 回答