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 Quote Link to comment Share on other sites More sharing options...
Muddy_Funster Posted April 13, 2012 Share Posted April 13, 2012 describe your table please? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.