Hello there, I use a SQL related program. I want to select some data from a table. I want them to be comma seperated. However, I get a lot of empty spaces when I export them to text! The empty spaces are exactly after each comma...This is the code I use select replicate(code, 1)+',', replicate(name, 1)+',', replicate(afm, 1)+',', replicate(street1, 1)+',', replicate(zipcode1, 1)+',', replicate(phone11, 1) from customer
Is replicate function useful? I use it correct or no?I'm a newbie 