Forum Moderators: coopster
I know that if send the above I will del it all
but how do a write it in order to del only specified rows
delete aa, bb, cc etc... from .. where ...
of course I do not want to remove the row but its content only!
thanks
regards
Henry
If you want to delete specifc data from a row, but retain the row, you need to use update [dev.mysql.com] rather than delete [dev.mysql.com]
So in that case, it would be
UPDATE table_1 SET col_name1=`$val_1`, col2=`$val_2` WHERE id=$id
or some such thing.
Tom