Multiple choice technology databases

What are the special characters allowed in a table name? (Choose two answers.)

  1. &

  2. #

  3. @

  4. $
Reveal answer Fill a bubble to check yourself
C,D Correct answer
Explanation

In SQL table naming conventions, the special characters allowed (depending on database) include @ and $ in many systems like SQL Server and MySQL. The ampersand (&) and hash (#) characters are typically not allowed or have special meanings (e.g., # for temporary tables in some databases). Specific rules vary by database system, but @ and $ are commonly permitted for naming purposes.