比如你要根据textBox1里的用户名在UserInfo表中更新textBox2里填写的地址和textBox3里填写的电话号码就是这样: string SQL="update UserInfo set Address='"+textBox1.text+"',Phone='"+textBox2.text+"' where UserName='"+textBox3.text+"'";
以下是引用wj2051在2005-10-29 20:25:17的发言: 比如你要根据textBox1里的用户名在UserInfo表中更新textBox2里填写的地址和textBox3里填写的电话号码就是这样: string SQL="update UserInfo set Address='"+textBox1.text+"',Phone='"+textBox2.text+"' where UserName='"+textBox3.text+"'";