Posts tagged with sql

Database Views

🗓 26 Aug 2016
In: 📁 SQL

Database views are a type of stored query that create a pseudo-‘table’. Instead of doing the same join table mish-mash to get the relationship of data needed, you can create a view that will store the query to get that data. This query is run every time so the data...