MySQL Forums
Forum List  »  Newbie

Re: Append Query in MySQL
Posted by: Felix Geerinckx
Date: May 09, 2005 10:25AM

rick emmet wrote:

> My database backround is mostly in MS Access and I use Append Queries quite a lot. Does MySQL
> have an equivalent to the Append Query, or is it only a feature of Access?

If I'm remembering correctly, Access Append Queries are implemented with something similar to the following MySQL INSERT syntax (you can verify this by looking at the Access SQL):

INSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]
[INTO] tbl_name [(col_name,...)]
SELECT ...
[ ON DUPLICATE KEY UPDATE col_name=expr, ... ]

(see http://dev.mysql.com/doc/mysql/en/insert.html).

What happens when you do an Append Query on MySQL tables linked to Access?

--
felix
Please use BBCode to format your messages in this forum.

Options: ReplyQuote


Subject
Written By
Posted
May 09, 2005 09:49AM
Re: Append Query in MySQL
May 09, 2005 10:25AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.