0
我在Adaptive Server Anywhere v7上運行查詢。SQl輸出爲CSV,不帶單引號
select customerinfo.customerid, Name, Address1, Address2, City, State, ZIP, Country from customerinfo, addressinfo
where customerinfo.customerid = addressinfo.customerid
and MEMBER = (Date(GetDate()-4))
and addressinfo.addresstype = 's';
Output to C:\SamplePacks.CSV
輸出是:
123, '姓名', '地址1,' 地址2' .....
有沒有一種方法來運行查詢,以便單引號請勿顯示?