I have a i18n
table in the database whose constant
column contains all values with the prefix lang
:
Table description
┌──────────────┬──────────────┬──────┬────────┬─────────────────────┬────────────────┐
│ Field │ Type │ Null │ Key │ Default │ Extra │
├──────────────┼──────────────┼──────┼────────┼─────────────────────┼────────────────┤
│ id │ int(13) │ NO │ PRI │ NULL │ auto_increment │
├──────────────┼──────────────┼──────┼────────┼─────────────────────┼────────────────┤
│ type_id │ int(13) │ NO │ │ NULL │ │
├──────────────┼──────────────┼──────┼────────┼─────────────────────┼────────────────┤
│ i18n_id │ varchar(3) │ NO │ │ NULL │ │
├──────────────┼──────────────┼──────┼────────┼─────────────────────┼────────────────┤
│ constant │ varchar(255) │ NO │ │ NULL │ │
├──────────────┼──────────────┼──────┼────────┼─────────────────────┼────────────────┤
│ value │ tinytext │ NO │ │ NULL │ │
├──────────────┼──────────────┼──────┼────────┼─────────────────────┼────────────────┤
│ description │ varchar(255) │ NO │ │ NULL │ │
├──────────────┼──────────────┼──────┼────────┼─────────────────────┼────────────────┤
│ date_created │ timestamp │ NO │ │ 0000-00-00 00:00:00 │ │
├──────────────┼──────────────┼──────┼────────┼─────────────────────┼────────────────┤
│ date_updated │ timestamp │ NO │ │ CURRENT_TIMESTAMP │ │
└──────────────┴──────────────┴──────┴────────┴─────────────────────┴────────────────┘
Content Example
Example of content in column constant
:
LANG_WORD_JOHN
LANG_WORD_DOE
What I'm trying to do is to update all the records in that table by changing the prefix LANG
to I18N
in the contents of the constant
column, but so far unsuccessful!
I18N_WORD_JOHN
I18N_WORD_DOE
Question
How can I update the value of the constant
column on all existing rows in the table by replacing the prefix LANG
with I18N
?