Dengan asumsi Anda memiliki tabel seperti ini:
CREATE TABLE table1
(
a character varying NOT NULL,
...
)
Anda dapat menggunakan regexp_replace berikut:
update table1 set a = regexp_replace(a, '(.*?)<(\w+)\s+.*?>(.*)', '\1<\2>\3', 'g');
'g'
flag menunjukkan untuk mengganti semua pola yang cocok, tidak hanya yang pertama.
Dengan masukan ini:
foo foo <th id="ddd"> foo foo <th id="www"> foo<div id="hey">
Saya mendapatkan output berikut:
foo foo <th> foo foo <th> foo<div>