'Remove a piece from a string from a big database
Solution 1:[1]
use SQL replace() so you can do it something like this
SELECT
SELECT REPLACE(titleurl , identifier, '') FROM your_table
UPDATE
UPDATE your_table SET titleurl = REPLACE(titleurl , identifier, '')
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 |