Access query

  • Thread starter Thread starter yohann
  • Start date Start date
Y

yohann

Sorry for my bad english

I have an access database in english and i have to give
report back on excel to my headoffice in Paris.
I have some queries on access already defined
Is there a mean to define somme equivalences like
summer = ete(french translation)
and then use an index(match,...)
Thank you a lot

Yohann
..
 
I'm not sure I understand. Do you want to use aliases for your column
names, for example:

SELECT
Name AS Nom, Price As Prix,
Quantity AS Quantite, Tally As Controle
FROM
MyTable
 
Back
Top