0
I know it’s kind of absurd, but unfortunately I came across a situation I don’t know how to get around
The company has a system that records in Adobe ACCSSES and some tables theme accentuation and special characters Ex: Code - Action - Price
And I installed a program that converts the database to MYSQL and sends it to my server once a day, and updates the database
But the tables also go up with the special characters.
And I need to perform the consultations with these characters only that of the stick at the time of performing, there is some way around this ?
SELECT * FROM Campanhas ORDER BY Código ASC
The problem with creating accented tables is that you’re really going to have a lot of problems with that. Windows may even have a certain propensity to do these things, but when doing an SQL query or even accessing through Linux, it will not have the expected behavior. The recommended is always to have the name of the tables without special characters, it facilitates your life and the life of those who will give future support to the bank
– Isaias Lima
I also know that Isaias, plus the problem and that I can’t touch the structure of the client’s program
– Marcos Paulo