How to insert tab character for string manipulation

0
trying to generate a sql query by manipulating a variable for the query. looking to add a tab character or ‘n’ space characters in a string variable , so that the output comes with correct indentation and then can use that to run sql query.   ex: if i use   text1 +’tab char’+ text2 then the output sting should show text1      text2 , with tab in between. how to do this..
asked
1 answers
2

Hi JP,

 

Use 	 or   to print the string with space 

answered