लूप के भीतर आप एक यादृच्छिक संख्या खींच सकते हैं और केवल इसे सम्मिलित कर सकते हैं (और लूपकाउंटर को घटा सकते हैं) यदि यह मौजूद नहीं है। स्यूडोकोड :
while (counter > 6)
loop:
this = 1+ random() *1000
insert into weighed_directed_edge (startpoint, endpoint, costs)
VALUES ( :frompoint, :this, xxx* random() )
WHERE NOT EXISTS (
SELECT(*) FROM weighed_directed_edge nx
WHERE nx.startpoint = :frompoint
AND nx.endpoint = :this
);
if (rowcount > 0) counter -= 1;
end loop;