I wanted to export the following table to a .csv file
sField1 sField2 sField3
Father Mother Brother
I obtained the following result:
sField1,sField2,sField3
Father,"Mother","Brother"
The code I used is:
Select 1
COPY TO (curdir() + "table"
TYPE CSV
I want to know if it's normal that quotes appear.
Thanks
Const
sField1 sField2 sField3
Father Mother Brother
I obtained the following result:
sField1,sField2,sField3
Father,"Mother","Brother"
The code I used is:
Select 1
COPY TO (curdir() + "table"
I want to know if it's normal that quotes appear.
Thanks
Const