View in Sql
When working with SQL some time we only need to query some of specific data set not query bunch of data to improve performance. Luckily we can use View to achieve that kind of behavior. View is a virtual table whose contents (columns and rows) are defined by a query. Use this statement to create… Read More View in Sql