我现在有一个包含员工信息的sql表,我添加了一个名为 Phone_no 将所有条目设置为空。我现在需要为每个条目添加一个电话号码 07072000001..25 所以第一个条目是 07072000001 第二个是 07072000002 等等。
Phone_no
07072000001..25
07072000001
07072000002
3b6akqbq1#
你可以使用变量:
set @rn := 0; update t set phone_num = lpad(7072000000 + (@rn := @rn + 1), 11, '0');
我不确定你们是否有特别的订货。如果是,你可以加上 order by 到 update .
order by
update
1条答案
按热度按时间3b6akqbq1#
你可以使用变量:
我不确定你们是否有特别的订货。如果是,你可以加上
order by
到update
.