Question: I have a SQL View returning data .The SQL Server View is not schema bound. Normally users do a SELECT col1,col2,col3 FROM MYVIEW . The data sets have grown and the users want to start filtering data , such as SELECT col1,col2,col3 FROM MYVIEW WHERE COL1 > xxxx. If the users filter data on the SQL data , will all the data be returned via the VIEW and then filtered or will just the filtered data be returned? Answer: A View is a pre-defined query. The Microsoft documentation defines a View as “virtual table whose contents are defined by... Read more →