The View
's are virtual tables, resulting from SQL
queries, as in the example:
CREATE VIEW view_name AS
SELECT column_name(s)
FROM table_name
WHERE condition
From this, we can update or delete a View
, but we can not edit the data directly in them.
Are there any performance gains when using them, or is the use only related to code reduction in application queries?