update person set pesonName=‘lubu’ and age=22 where id=5
看了一些帖子简直就是瞎说,update中不能使用and所以正确的是
update person set pesonName=‘lubu’, age=22 where id=5
update person set pesonName=‘lubu’ and age=22 where id=5
看了一些帖子简直就是瞎说,update中不能使用and所以正确的是
update person set pesonName=‘lubu’, age=22 where id=5