Views: 460 Created: 2021-11-30 17:22:34 Modified: 2023-03-29 06:44:04
Here is an example how to replace for example the string "https://test.de/testthis/" with "https://newlink.de/testthis/". The code is: UPDATE tablenamehere<br /> SET columnname = REPLACE(columnname , 'test.de', 'newlink.de'); ...