RDBMS

1234567891011
Across
  1. 3. ON UPDATE CASCADE ensures _____________
  2. 4. Eliminating modification anomalies is a(n) ________ of normalization.
  3. 7. A functional dependency is a relationship between or among
  4. 8. A virtual table that can be accessed via SQL commands
  5. 9. The SQL statement that queries or reads data from a table is ________ .
  6. 10. __________ command sorts rows in SQL
  7. 11. The following SQL is which type of join: SELECT CUSTOMER_T. CUSTOMER_ID, ORDER_T. CUSTOMER_ID, NAME, ORDER_ID FROM CUSTOMER_T,ORDER_T WHERE CUSTOMER_T. CUSTOMER_ID = ORDER_T. CUSTOMER_ID
Down
  1. 1. For some relations, changing the data can have undesirable consequences called
  2. 2. The identifier of an entity will become the ________ of the new table.
  3. 5. To remove duplicate rows from the results of an SQL SELECT statement, the ________ qualifier specified must be included.
  4. 6. The result of a SQL SELECT statement is a(n) ________