Click to See Complete Forum and Search --> : DELETE Syntax


JoseSilva
06-24-2008, 04:23 PM
Hi

Can somebody help me here:

I have quite a number of rows between a ceta row and another row in my DB that I want to delet.

I tried:

DELETE FROM table WHERE "col1" >= '40000' AND "col1" =<50000
It gives me a syntax error.
Thanks


Jose Silva

Nedals
06-24-2008, 06:59 PM
DELETE FROM table WHERE col1 BETWEEN 40000 AND 50000