Subject Re: [ib-support] Delete first 100 from table
Author Markus Ostenried
At 14:59 Tuesday, 10.06.2003 -0500, you wrote:
>Is there a way to delete the first so many records like you can do in a
>select?

Hi Don,

I guess you could something like

DELETE FROM YourTable
WHERE YourField IN
(
SELECT FIRST 100 YourField FROM YourTable
WHERE <your Condition>
);

HTH,
Markus