4
As View
's are virtual tables resulting from consultations SQL
, 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’t edit the data directly into them.
There is some performance gain when using them, or use is related only to code reduction in application queries?
Epa! Yes you can change data through a view in MS SQL reference: http://msdn.microsoft.com/en-us/library/ms180800.aspx
– jean
Actually, in MS SQL Views allow recording.
– Marcelo Aymone