MCQs>IT & Programming>PostgreSQL>Given a table special_products that inherits from a table store_products, which of the following statements will modify store_products only without affecting its child table?
PostgreSQL MCQs
Given a table special_products that inherits from a table store_products, which of the following statements will modify store_products only without affecting its child table?
Answer
Correct Answer: UPDATE ONLY store_products SET name = 'Wine' WHERE id = 2;
Explanation:
Note: This Question is unanswered, help us to find answer for this one