56,937
社区成员




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;