Hi I would like to know how can i delete a part of a text in a record on mysql databse Example text "i have to go" If i want to delete only the : i have From the Sentence how do i do that on enire field records Thank you Good day
perhaps do it with php? put everything in a $var and use something like $var = substr($var,pos1,pos2) and then update the sql query with UPDATE table SET item='$var'
UPDATE table SET col = REPLACE(col, 'old text', 'new text') Code (markup): and 'new text' can be '' to replace it with nothing aka remove the 'old text'