|
Why deal with an identity, or especially inserting n-times, just
generate the values with a recursive query for the number of rows
required:
<code>
CREATE TABLE shuffle (nid , rnd ) as
( with sample (rnum , ranv) as
( select int(1), rand()
from qsys2.qsqptabl
union all
select int(rnum+1) , decimal(rand(), 10, 10)
from sample
where rnum<100
) select rnum,ranv from sample
) with data
</code>
Regards, Chuck
--
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.