Remove html tags, entities, characters... from a SQLite table
Is easy, you only have to use this command:
update table SET column = replace(column, " ", " ");
And the combinations you want:
update table SET column = replace(column, "á", "á");
...
More info on: http://www.sqlite.org/lang_corefunc.html
update table SET column = replace(column, " ", " ");
And the combinations you want:
update table SET column = replace(column, "á", "á");
...
More info on: http://www.sqlite.org/lang_corefunc.html
Remove html tags, entities, characters... from a SQLite table
Reviewed by Unknown
on
11:16
Rating:
No hay comentarios: