Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Select and insert in same transaction

Re: Select and insert in same transaction

From: damorgan <damorgan_at_exesolutions.com>
Date: Mon, 18 Mar 2002 21:20:30 GMT
Message-ID: <3C965A29.83BB45A7@exesolutions.com>


SELECT fields
FROM table
WHERE some_condition
FOR UPDATE; Daniel Morgan

Larry Marshall wrote:

> I am new to SQL. I want to do a query:
> select colA, colB, colC from table
> where colDate is null
>
> After this, I want to set colDate of each record selected in the above
> query to the current date.
>
> How can I assure that I update all the selected records from the first
> query and no more. I am worried that between the two DML statements
> further records might have been added having colDate = NULL.
>
> TIA - Larry
Received on Mon Mar 18 2002 - 15:20:30 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US