[postgresql]文字列への挿入/削除
文字列の途中に挿入するには、overlayを使う。
SELECT overlay('Txxxxas' placing 'hom' from 2 for 0) => Thomxxxxas
文字列の途中を削除するにも overlayを使う
SELECT overlay('1234' placing '' from 2 for 1) => 134
文字列の途中に挿入するには、overlayを使う。
SELECT overlay('Txxxxas' placing 'hom' from 2 for 0) => Thomxxxxas
文字列の途中を削除するにも overlayを使う
SELECT overlay('1234' placing '' from 2 for 1) => 134