database - Mass insert data at end of MySQL field -
how go mass inserting ending </div>
tag defined field name in mysql?
thanks heaps.
consider using concat command:
update jos_content set fulltext = concat( fulltext, '</div>' ) id = 7;
if wanted update records in single query, remove clause above.
please note, depending on server side language you're using, you'll want setup parameterized query prevent sql injection or other hacks.
Comments
Post a Comment