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

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -