Manoj Chaurasia Posted April 24, 2012 Posted April 24, 2012 Hey there. I'm trying to change the name of a column via MySQL. Here the statement: SELECT id AS Personalnumber FROM PersonTable Works fine with my Oracle DB but not with MySQL. The output field of my process will not refresh the name and is still called id. Any ideas greetz kakl
David Abragimov Posted June 23, 2020 Posted June 23, 2020 https://support.tibco.com/s/article/Using-Column-Alias-in-MySQL-and-MariaDB Column alias is not working with MySQLResolution Just append "useOldAliasMetadataBehavior=true" this property to the JDBC URL e.g.: For MySQL- jdbc:mysql://host:3306/mysqluseOldAliasMetadataBehavior=true
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now