Hello
Sometimes I get a duplicate key which I want to ignore or discard.
This is a example and has nothing to do with the actual query. I simple want to state columns/values
insert into table(Time_Stamp,Time_Stamp_ms,p1) values (time,timems,'1')
Where the first two are my PK.
I see that
insert into table(Time_Stamp,Time_Stamp_ms,p1) values (time,timems,'1') on duplicate key
exists but it asks me for a UPDATE. How do I update on "Time_Stamp" and "Time_Stamp_ms"?
Im sorry for not explaining correctly my problem.