Multiple choice technology databases

In RDBMS, one can NOT have two tables with the same column name

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Column names in RDBMS are scoped to their individual tables, so multiple tables can have columns with identical names without conflict. When referencing columns in queries, you use dot notation (table_name.column_name) to disambiguate which column you mean.