create proc Proc_AlterUserInfo_Update
@uid int,@pwd varchar(100),@email varchar(60),
@phone varchar(50),@address varchar(500),@isact int,@province int,@city varchar(32),
@isadd int,@name varchar(10),@bname varchar(10),@bbirthday varchar(30),@bsex bit
as
update userinfo set u_password=@pwd where u_id=@uid
update userinfo set u_email=@email where u_id=@uid
--update userinfo set u_idcard=@idcard where u_id=@uid
update userinfo set u_phone=@phone where u_id=@uid
update userinfo set u_address=@address where u_id=@uid
update userinfo set u_isactivation=@isact where u_id=@uid
update userinfo set u_province=@province where u_id=@uid
update userinfo set u_city=@city where u_id=@uid
update userinfo set u_hasaddinfo=@isadd where u_id=@uid
update userinfo set u_name=@name where u_id=@uid
update babyinfo set b_name=@bname where u_id=@uid
update babyinfo set b_birthday=@bbirthday where u_id=@uid
update babyinfo set b_sex=@bsex where u_id=@uidGOupdate babyinfo set b_name=@bname where u_id=@uid
update babyinfo set b_birthday=@bbirthday where u_id=@uid
update babyinfo set b_sex=@bsex where u_id=@uid
这三行没更新到,请问错在那里了