Insert from select

2002-03-16 Thread David McInnis

I think that I saw a similar query last week some time but I cannot
remember the sql syntax.  Is it possible to insert from a select.

Something like 

insert into table_a from select * from table_b where blah=somevalue

Thanks,

David McInnis



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Insert from select

2002-03-16 Thread Kittiphum Worachat

- Original Message - 
From: David McInnis [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, March 16, 2002 3:26 PM
Subject: Insert from select


 I think that I saw a similar query last week some time but I cannot
 remember the sql syntax.  Is it possible to insert from a select.
 
 Something like 
 
 insert into table_a from select * from table_b where blah=somevalue
 
 Thanks,
 
 David McInnis
query like;

insert into table_a select * from table_b where blah=somevalue

Kittiphum Worachat,MT.
www.hatyailab.com


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Insert from select

2002-03-16 Thread Georg Richter

On Saturday, 16. March 2002 09:26, David McInnis wrote:
 I think that I saw a similar query last week some time but I cannot
 remember the sql syntax.  Is it possible to insert from a select.

See http://www.mysql.com/doc/I/N/INSERT_SELECT.html

Regards Georg


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php