Change Password

Explain the difference between a view and a table in SQL.
Views and tables are identical in SQL
A view is a virtual table based on the result of a SELECT query, while a table stores actual data
A view and a table both store actual data
A view is a subset of a table and cannot be queried independently