我正在 Adaptive Server Anywhere v7 上运行查询。
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'......
有没有办法运行查询,以便不显示单引号?