Insert line break SQL


/ Published in: SQL
Save to your folder(s)

insert line break via sql query


Copy this code and paste it in your HTML
  1. UPDATE tableName
  2.  
  3. SET Description = 'New Description: blah blah' + CHAR(13)+CHAR(10) + CHAR(13)+CHAR(10) + 'Next line blah.' + CHAR(13)+CHAR(10) + CHAR(13)+CHAR(10) + '<strong>Strong bottom.</strong>'
  4.  
  5. WHERE ProductID = 'nosoupforyou12'

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.