Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将编写一个将一行插入到表中的触发器。insert 语句包含一ID列。我希望我的触发器随机选择三个 ID 中的一个来插入,这可能吗?
ID
您可以使用该RAND函数生成一个随机数,例如i <= x < j.
RAND
i <= x < j
FLOOR(i + RAND() * (j – i))
在这里您可以找到有关该RAND功能的文档。