Excellent! I didn't realize that the "oid" existed! This is perfect.
Thanks for this!

Not directly. But every row has an implicit primary key that you can
refer to using (amongst other names) "oid". You can use a SELECT to
locate a single oid value and then use the oid to delete a single
row. i.e. instead of:

  DELETE FROM xxx WHERE <my where clause>;

do

  DELETE FROM xxx
  WHERE oid = (SELECT oid FROM xxx WHERE <my where clause> LIMIT 1)

or similar.

Dan.



> Thanks,
>
> Jim
>
> -----------------------------------------------------------------------------
> To unsubscribe, send email to [EMAIL PROTECTED]
> -----------------------------------------------------------------------------
>


-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------



-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to