Google News
logo
MySQL - Quiz(MCQ)
The variable used to set table alias names as non case sensitive is _________
A)
lower_case_all
B)
lower_case_alias
C)
lower_case_aliases
D)
lower_case_table_names

Correct Answer :   lower_case_table_names


Explanation : In MySQL, by default the alias names are case sensitive. An alias can hence be specified in any letter case, upper, lower or mixed. If the variable ‘lower_case_table_names’ is non zero, the alias names of tables are not case sensitive.

Advertisement