sql >> Databasteknik >  >> RDS >> Mysql

Hur jag kan ersätta endast det första resultatet i SQL-funktionen

I MySQL <8.0, där regexp_replace() och liknande stöds inte, du kan använda strängfunktioner:

update wp_comments
set comment_content = concat(
    substr(comment_content, 1, locate('XXX', comment_content) - 1),
    'MMM',
    substr(comment_content, locate('XXX', comment_content) + 3)
) 
where comment_id = 334 and locate('XXX', comment_content) > 0

Demo på DB Fiddle :

comment_id | comment_content                                                               
---------: | :-----------------------------------------------------------------------------
       334 | Hello MMM tomorrow we XXX will meeting in XXX Dubai, Do you want join us XXX ?


  1. Arrayed input value infogar tom post i mysql

  2. PostgreSQL-prestanda för ad-hoc SQL vs funktioner

  3. Hur man returnerar en tabell efter radtyp i PL/pgSQL

  4. Hur man startar MySQL-server på Windows XP