ユーザー テーブルの empID をユーザーに更新/割り当てたいと考えています。以下の私の更新では、選択したユーザー (cbArea.Text) だけでなく、すべての行/ユーザーを empID で更新します。
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 + "'" ;