Using SQL view | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Using SQL view

Do I have to run the CREATE VIEW query every time I turn ON my computer or I just need to run it once and after that I can just use the SELECT query even after I shut down my compurter or close the DB manager?

2nd Jan 2017, 3:05 PM
Janier Almarza
Janier Almarza - avatar
3 Answers
+ 1
Look, I think you misunderstood the view thing. You don't have to create views in order to select from any tables you might want. And maybe I got you wrong, so when you create views they stay in the database even if you shutdown your computer or dB manager. Of course, as long as it is committed to the database. Hope it helps but feel free to ask again!
3rd Jan 2017, 7:54 AM
Olavo André Parno
Olavo André Parno - avatar
+ 1
I know there's no need to create a view in order to select from any tables, to me, it seem like a way make it easy to view any information in the DB that requieres a really long and annoying query, so we can create a view with the long and annoying query with the columns, joins, and all that good stuff we need and after that we just use a simple query with some simple filters; of course this will only work with a more general information from the tables.
3rd Jan 2017, 12:36 PM
Janier Almarza
Janier Almarza - avatar
0
Exactly. If you have big queries creating a view will definitely make things easier. :)
3rd Jan 2017, 4:29 PM
Olavo André Parno
Olavo André Parno - avatar