57,064
社区成员
发帖
与我相关
我的任务
分享
UPDATE `sdypt`.`test1`
SET
@1=10
@2='chendong'
@3='1987:07:09'
WHERE
@1=10
@2='chendong'
@3='2011:11:11'
UPDATE `sdypt`.`test1`
SET
@1=11
@2='lucy'
@3='1988:08:10'
WHERE
@1=11
@2='lucy'
@3='2011:11:11'
UPDATE `sdypt`.`test1`
SET
@1=10,
@2='chendong',
@3='1987:07:09'
WHERE
@1=10;
UPDATE `sdypt`.`test1`
SET
@1=11,
@2='lucy',
@3='1988:08:10'
WHERE
@1=11;