I have some tables and fields in English in my database (and these should be like this). But on the other hand, when I make a select, the name of the fields have to be in Spanish. Example: - Name of the field in the database: employeeName - Name that should come out in my select: Name It would be something like a select employeeName as Name.
The problem is that there are many tables and many fields per table ... And if every select I do, I have to alias all the fields ... I find it impractical.
Is there any way to translate the fields automatically? As an automatic alias?
Thanks in advance.