Re: [SQL] Seeding

2002-07-15 Thread Peter Eisentraut
Chad Thompson writes: > create table "temp"( > select distinct(full_phone) > >from lists > where client_id =8) > > This gives me 100,000 unique records > > What i would like to do is, every 2500, insert a specific number like '5552552555' The first thing you're going to have to define is what yo

[SQL] Seeding

2002-07-15 Thread Chad Thompson
Is there any way to automaticly "seed" a number into a list.  For example   create table "temp"( select distinct(full_phone) from lists where client_id =8)   This gives me 100,000 unique records   What i would like to do is, every 2500, insert a specific number like '5552552555'   can this be