SQL - Views
You wrote this SQL to create a view:
Later, you try to update the Users table's email column but get an error when using the view. Why?
CREATE VIEW UserEmails AS SELECT user_id, email FROM Users;Later, you try to update the Users table's email column but get an error when using the view. Why?
