Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: transfer data from one table to another
<peerworks_at_my-deja.com>ÀÌ(°¡) ¾Æ·¡ ¸Þ½ÃÁö¸¦
news:82k1hi$vp6$1_at_nnrp1.deja.com¿¡ °Ô½ÃÇÏ¿´½À´Ï´Ù.
> I want to move some of the data from one table to another. What is the
> best choice of SQL statements?
>
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
Insert into table1
select * from table2
where column1 = value1;
*^^*
Received on Tue Dec 07 1999 - 18:50:11 CST
![]() |
![]() |