In access 2007 im running a query and need to export the fields with quotes around them.
select productName, productPrice
from Products
needs to come out as:
"product1","price1"
"product2","price2"
etc...
Whats the way to do this? I know this is probably pretty basic but so am i right now.
Thanks
select productName, productPrice
from Products
needs to come out as:
"product1","price1"
"product2","price2"
etc...
Whats the way to do this? I know this is probably pretty basic but so am i right now.
Thanks