vote up 0 vote down star

If I have query like this, how can I refer to values I have already given in update statement, so that I don't need to insert same data to query again? Example I would like to update col1 value with 'xxx', but now I need to enter 'xxx' again in duplicate statement. Is there anyway to refer those values in duplicate statement?

INSERT INTO TABLENAME(col1, col2) VALUES (’xxx’, ‘yyy’) ON DUPLICATE KEY UPDATE col1 = ‘zzz’

flag

1 Answer

vote up 0 vote down check

What about variables: http://dev.mysql.com/doc/refman/5.0/en/user-variables.html

Sample:


SET @value = 'xxx';
INSERT INTO TABLENAME(col1, col2) VALUES (@value, ‘yyy’) ON DUPLICATE KEY UPDATE col1 = @value

And why do you exactly need this? Do you type the queries in phpMyAdmin by hand?

link|flag
No, its automated code, and it still means work even its automated, and now I can make MySQL do that extra work... – Java Coder May 15 at 9:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.