Which of the following can be a valid column name?
-
Column
-
1966_Invoices
-
Catch_#22
-
#Invoices
-
None of the above
C
Correct answer
Explanation
In Oracle, standard unquoted identifiers must begin with a letter (A-Z) and can contain only letters, digits, and underscores. Option C is the only valid identifier that follows these rules. Option A uses a reserved word (though it would work if quoted). Option B starts with a digit which is invalid. Option D starts with # which is not allowed in unquoted identifiers. E is incorrect since C is valid.