I need to change table name from lowercase to uppercase but using this statement the table name can be changed but the names are in lowercase..
sql> rename table name to Name;
is there any way to convert table name to uppercase?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Add this line in the mysql server variables array in my.cnf:
Restart your mysql server.
Now you can create or alter tables in upper case, the server will accept your query.
Note that usually, on Linux systems, the main mysql configuration file can be found in
/etc/my.cnfor/etc/mysql/my.cnf.