hisham
IS-IT--Management
- Nov 6, 2000
- 194
I have a table contains 'id' and 'date' and I use accessdump software to convert an MS Access table to dump file "news.txt" the result was for example:
INSERT INTO news VALUES('2','20/01/2004');
INSERT INTO news VALUES('5','07/01/2004');
etc……
But what I need is: replace the " INSERT INTO news VALUES('2','20/01/2004');" into " UPDATE news set date ='20/01/2004' where id = 2 ; "
Any ideas?
Thanks in advance
INSERT INTO news VALUES('2','20/01/2004');
INSERT INTO news VALUES('5','07/01/2004');
etc……
But what I need is: replace the " INSERT INTO news VALUES('2','20/01/2004');" into " UPDATE news set date ='20/01/2004' where id = 2 ; "
Any ideas?
Thanks in advance