In one of my DB columns I've got the .avi extension. How can I remove it from all rows in the column using SQL? Cheers
you can solve your problem with the assistance of Replace function of mysql. update table_name set field_name=replace(field_name, ,.avi) this statement works & you can easily solve your problem