I have an sql string retreiving data for three columns and I dont want any space in betweeen these columns. I want to remove space between columns.
string stringSql = " SELECT distinct " +
"'" + comboBox6.Text + "' as RecordType" +
" , left([Claimant Name] +' ',29) " +
" , left([Claimant Address1] +' ',29) " +
" , left([Claimant Address2] +' ',29) as ClaimantAddress2 " +
My Client requirment is like
**1xyz1dundas**
MY output is like
**1 xyz 1 dundas**