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

ios - iPhone/iPad different view orientations in different views , and apple approval process -

monitor web browser programmatically in Android? -

c# - Using multiple datasets in RDLC -