SQL - Views
You created a view with:
But running
What is the most likely cause?
CREATE VIEW ActiveUsers AS SELECT id, name FROM Users WHERE active = 1;But running
SELECT * FROM ActiveUsers; gives an error: ERROR: relation "activeusers" does not existWhat is the most likely cause?
