newphpcoder Posted April 13, 2012 Share Posted April 13, 2012 Hi.. I have code for importing data from .xml file to database. My issue is the On Dupliicate Key Update did not work, ti save again the data even the data is already exist.. here is my code: $sql = "INSERT INTO sales_order (ProductType,WorkOrder,POIssueDate,SalesMonth) VALUES ('$ProductType','$WorkOrder','$POIssueDate','$SalesMonth') ON DUPLICATE KEY UPDATE ProductType = '$ProductType', WorkOrder = '$WorkOrder', POIssueDate = '$POIssueDate', SalesMonth = '$SalesMonth'" or die(mysql_error()); For example I attach file then I attahc again but I update some data I want it to update on database if the ProductType is already exist and add if not. I attach my sample upload file. and You can see on the second upload the ProductType P101 change the sales month. In my query the data that was second upload was insert again it did not update the existing data.I want the result should be the second upload not mix the first and second upload. Now the data was duplicated, thats my problem. I want it to update if the ProductType is already exist. Thank you Link to comment https://forums.phpfreaks.com/topic/260844-problem-in-insert-with-on-duplicate-key-update/ Share on other sites More sharing options...
Muddy_Funster Posted April 13, 2012 Share Posted April 13, 2012 describe your table please? Link to comment https://forums.phpfreaks.com/topic/260844-problem-in-insert-with-on-duplicate-key-update/#findComment-1336946 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.