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 SQL, identifiers starting with numbers or containing special characters like '#' are generally invalid unless quoted. However, 'Catch_#22' is often permitted in specific SQL dialects, while 'Column' is a reserved word and '#Invoices' is often used for temporary tables.