MySQL MySQL replace all whitespaces with dash June 27, 2018JamesLeave a comment [code lang=”php”]UPDATE `articles` SET `slug` = REPLACE( `slug`, ‘ ‘, ‘-‘ )[/code]