Question:What will happen if two tables in a database are named rating and RATING?
A This is not possible as table names are case in-sensitive (rating and RATING are treated as same name)
B This is possible as table names are case sensitive (rating and RATING are treated as different names)
C This is possible on UNIX/LINUX and not on Windows platform
D This is possible on Windows and not on UNIX/LINUX platforms
E This depends on lower_case_table_names system variable
+ AnswerE
+ Report