Anybody explain the below lines in simple language so that i can understand. | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

Anybody explain the below lines in simple language so that i can understand.

A view always shows up-to-date data! The database engine uses the view's SQL statement to recreate the data each time a user queries a view.

10th Apr 2017, 7:40 PM
T Karthikeyan
T Karthikeyan - avatar
1 Respuesta
+ 4
A View is just a query stored under a specific name, e.g. you can define a view called "AllPeopleOver18": CREATE VIEW AllPeopleOver18 as ( SELECT * FROM People as p WHERE p.age > 18 ORDER BY p.lastname ) Later you can use that view by simply writing: "SELECT * FROM AllPeopleOver18" instead of the whole query over and over again
10th Apr 2017, 8:12 PM
Daniel Thomalla
Daniel Thomalla - avatar