Add " mark to query results

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I add quotaton mark to each result pulled from a query? We need to
upload the query results (email addresses) to Novell and it requires that
each result have a " mark at the end. I really do not want to manually add
each " tp 6000+ email addresses!
TIA
 
In the query add to the fields before and after "''

'"' & [FieldName] & '"'
 
What does the SQL statement for your query look like? Post it and we can
suggest how to do it.
 
Laura said:
How can I add quotaton mark to each result pulled from a query? We need to
upload the query results (email addresses) to Novell and it requires that
each result have a " mark at the end. I really do not want to manually add
each " tp 6000+ email addresses!
TIA

SELECT email & '"' As email_address
FROM ... etc. ...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top