我想在一个时间表上运行一个过程,从该过程中获取结果并将该数据输入到单元格中。
BEGIN
select location from StartPositions where id = (FLOOR(1 + RAND() * (5 - 0 +1)));
UPDATE wanderingtrader.npcs
SET startpos=''
WHERE id=1;
END
when SET startpos =
我需要这个数据是由id给出的位置的结果,它得到的坐标
set startpos = (select location from StartPositions where id = (FLOOR(1 + RAND() * (5 - 0 +1))))