Views are saved queries. What is saved is only the definition of the query not the data.
Hence views are useful to save specific queries.
Create view: CREATE VIEW view_name AS [underlying query]
Remove view: DROP VIEW view_name
Formula 1 Data: https://ergast.com/mrd/db/#csv
#sql #views #databases #queries