Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learn SQL using MySQL in One Day and Learn It Well

You're reading from  Learn SQL using MySQL in One Day and Learn It Well

Product type Book
Published in Apr 2024
Publisher Packt
ISBN-13 9781836205678
Pages 121 pages
Edition 1st Edition
Languages
Author (1):
Jamie Chan Jamie Chan
Profile icon Jamie Chan

What is a view?

 

Simply stated, an SQL view is a virtual table.

 

In contrast to actual tables, views do not contain data. Instead, they contain SELECT statements. The data to display is retrieved using those SELECT statements.

 

One advantage of using views is that it allows programmers to simplify their code. They can write relatively complex SELECT statements to join multiple tables into a single virtual table. Once that is done, they can access that virtual table like a normal table and perform simple searches on it.

 

In addition, views also allow us to restrict access to certain data in our tables. For instance, suppose we have a table with three columns - id, password and email. If we do not want other programmers to have access to all the data in the tables (such as the password column), we can create a view with only the id and email columns and let them have access to the view instead.

 

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}