update sq_policy set code="ZC20230426"+(FLOOR(RAND() * 900 + 100)) where code="" or code is null
时间: 2024-05-19 08:17:29 浏览: 53
这是一条 SQL 语句,用于更新 sq_policy 表中 code 字段为空或为 null 的记录,将其赋值为 "ZC20230426" 加上一个 100 到 900 的随机数(该随机数是通过 FLOOR(RAND() * 900 + 100) 计算得出的)。其中,RAND() 函数返回一个 0 到 1 的随机数。
阅读全文