How can I check if a specific primary key (a string variable) already exists on the table and if not insert a new record otherwise just update the existing one with new values u
INSERT ... ON DUPLICATE KEY UPDATE ...
INSERT INTO mapdisplay
(HexID,FlightNo,Lat,Lon,Alt,Course,Groundspeed,Verticalrate,Distance)
VALUES (@r,@c,@f,@t,@w,@q,@u,@e,@y)
ON DUPLICATE KEY UPDATE
FlightNo = @c
,Lat = @f
,Lon = @t
,Alt = @w
,Course = @q
,Groundspeed = @u
,Verticalrate = @e
,Distance = @y;
Look at the last example in this link:
http://dev.mysql.com/doc/refman/5.0/en/insert-on-duplicate.html