Basic Oracle Concepts and Programming Question:
What Is PL/SQL Language Case Sensitive?
Answer:
PL/SQL language is not case sensitive:
► Reserved words are not case sensitive. For example: CASE and Case are identical.
► Variable names and other names are not case sensitive. For example: TOTAL_SALARY and total_salary are identical.
But values in string literals are case sensitive. For example: 'DBA' and 'dba' are different.
► Reserved words are not case sensitive. For example: CASE and Case are identical.
► Variable names and other names are not case sensitive. For example: TOTAL_SALARY and total_salary are identical.
But values in string literals are case sensitive. For example: 'DBA' and 'dba' are different.
Previous Question | Next Question |
How To Install Oracle SQL Developer? | How To Place Comments in PL/SQL? |