Is there a way to accomplish this?
INSERT IGNORE INTO some_table (one,two,three) VALUES(1,2,3)
ON DUPLICATE KEY (INSERT INTO audit_table VALUES(NOW(),'Duplicate key ignored')
I really don't want to use PHP for this :(
Thanks!
|
Is there a way to accomplish this?
I really don't want to use PHP for this :( Thanks!
| |||||
feedback
|
|
If you want to consider using a stored procedure, you can use a
Let's add some data, trying to insert a duplicate key:
Result:
If auditing is important on a database level, you may want to grant | |||||||
feedback
|
|
ON DUPLICATE KEY is used to update the row, not to insert in another table, you have to use two queries according the first's result. EDIT : you can use a trigger too | |||||||
feedback
|
|
Not sure if this would work but look into IF statement for MySQL Pseudo-code
| |||
|
feedback
|
|
I would use php for the above code. Unless you are in the habbit of using procedures for your content, otherwise you will have to always remember. "Oh, don't forget that stored procedure!" However, if you are going to use stored procedures, then this is pretty cool. -daniel | |||
|
feedback
|