Select-Insert-Query

From: postgres(at)countup(dot)de
To: pgsql-performance(at)postgresql(dot)org
Subject: Select-Insert-Query
Date: 2004-02-27 16:52:39
Message-ID: 20040227165239.7A6495A8173@kserver17.erfurt12.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

<html><head></head><body bgcolor="#ffffff" text="#000000" link="#000000" alink="#000000" vlink="#000000" marginwidth=10 marginheight=10 topmargin=10 leftmargin=10>Hi,
<br>
<br>what is the most performant way to select for example the first 99 rows of a table and insert them into another table...
<br>
<br>at the moment i do this:
<br>
<br>for userrecord in select * from table where account_id = a_account_id and counter_id = userrecord.counter_id and visitortable_id between a_minid and a_maxid limit 99 loop
<br> insert into lastusers (account_id, counter_id, date, ip, hostname) values(a_account_id,userrecord.counter_id,userrecord.date,userrecord.ip,userrecord.hostname);
<br>end loop;
<br>
<br>i think "limit" is a performance killer, is that right? but what to do instead
<br>
<br>thanks
<br>bye</body></html>

Attachment Content-Type Size
unknown_filename text/html 818 bytes

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Dror Matalon 2004-02-27 18:27:26 Re: FreeBSD config
Previous Message scott.marlowe 2004-02-27 15:33:40 Re: FreeBSD config