Multiple choice technology databases

In NPS, 'RENAME TABLE customer TO customer_new' will rename the customer table to customer_new

  1. True

  2. False

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

The RENAME TABLE syntax is incorrect for Netezza SQL. The correct command uses ALTER TABLE with the RENAME TO clause: ALTER TABLE customer RENAME TO customer_new; The statement as written will not execute successfully.