我想在用户表中更新/分配一个用户 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 + "'" ;