Re: update two oracle tables with single SQL Query?
- From: "sybrandb" <sybrandb@xxxxxxxxx>
- Date: 16 Apr 2007 04:17:10 -0700
On Apr 16, 12:49 pm, "Mahesh" <registered.h...@xxxxxxxxx> wrote:
Hi All
I just need to know is it possibel to update two different tables in a
single SQL Query??
Thanks in advance
Maheshkumar
You can update inline views
update (select empno, ename, deptno, dname
from emp, dept
where emp.deptno = dept.deptno)
set
etc.
--
Sybrand Bakker
Senior Oracle DBA
.
- Follow-Ups:
- Re: update two oracle tables with single SQL Query?
- From: Carlos
- Re: update two oracle tables with single SQL Query?
- References:
- update two oracle tables with single SQL Query?
- From: Mahesh
- update two oracle tables with single SQL Query?
- Prev by Date: Re: update two oracle tables with single SQL Query?
- Next by Date: Rename a column that had a reserved word
- Previous by thread: Re: update two oracle tables with single SQL Query?
- Next by thread: Re: update two oracle tables with single SQL Query?
- Index(es):
Relevant Pages
|
Loading