Subject | Re: [ib-support] Whats the advantage of a view ? |
---|---|
Author | Svein Erling Tysvær |
Post date | 2002-02-26T11:30:10Z |
>So there is no difference (in speed) when i use an explicit join in my selectCorrect, you gain no speed advantage from using a view. And I don't use
>and not using the view.
>So why should somebody use a view ?
views myself. But I think they can be useful if you need to restrict
access. You could have a table where a user is only allowed access to
certain columns or fields. Defining a view and grant access to the view
rather than the table itself is one way to do that.
Another advantage of views could be simplifying complex selects - not
making it execute any faster, but easier to comprehend.
I don't think there is anything you can do with a view that you cannot do
without it.
Set