Which three database objects have non-case-sensitive names on all operating system?

Which three database objects have non-case-sensitive names on all operating system?

Which three database objects have non-case-sensitive names on all operating system?

A.
Table

B.
Column

C.
Index

D.
Stored procedure

E.
Trigger



Leave a Reply 7

Your email address will not be published. Required fields are marked *


leo

leo

BCD without E ( three objects)

Ram

Ram

Column, index, and stored routine names are not case sensitive on any platform, nor are column aliases. Trigger names are case sensitive.

Jay

Jay

BCD

https://dev.mysql.com/doc/refman/5.6/en/identifier-case-sensitivity.html

Column, index, stored routine, and event names are not case sensitive on any platform, nor are column aliases.

Note
Although database, table, and trigger names are not case sensitive on SOME platforms, you should not refer to one of these using different cases within the same statement. The following statement would not work because it refers to a table both as my_table and as MY_TABLE:

zz

zz

B C D

Table and Triggers are partially case-sensitive on some platforms.