SlideShare a Scribd company logo
1 of 14
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
MySQL Views
Creating, Updating, and Drop Views
1FAKULTAS TEKNIK DAN ILMU KOMPUTER
UNIVERSITAS TEKNOKRAT INDONESIA
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
Kita akan belajar untuk membuat,
mengubah, dan menghapus
VIEWS. Termasuk cara
menggunakan view dalam
menampilkan informasi pada
basis data
2
Learning Objectives
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
3
1.Definisi Views
2.CREATE
3.UPDATE
4.DROP
Outlines
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
Definition
4
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
In SQL, a view is a
virtual table based on
the result-set of an SQL
statement.
5
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
A view contains rows and
columns, just like a real
table. The fields in a view
are fields from one or more
real tables in the database.
6
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
You can add SQL functions,
WHERE, and JOIN statements
to a view and present the
data as if the data were
coming from one single table.
7
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
CREATE
8
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
9
CREATE VIEW view_name AS
SELECT column1, column2, ...
FROM table_name
WHERE condition;
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
CREATE or REPLACE
10
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
11
CREATE OR REPLACE VIEW view_name AS
SELECT column1, column2, ...
FROM table_name
WHERE condition;
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
DROP
12
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
13
DROP VIEW view_name;
Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020
Thank You
14

More Related Content

Similar to Views in MySQL

Introduction and objectives of the project
Introduction and objectives of the projectIntroduction and objectives of the project
Introduction and objectives of the project
rihan696
 
internship final web development ppt[1].pptx
internship final web development ppt[1].pptxinternship final web development ppt[1].pptx
internship final web development ppt[1].pptx
RISHABHJAIN511562
 

Similar to Views in MySQL (20)

Introduction and objectives of the project
Introduction and objectives of the projectIntroduction and objectives of the project
Introduction and objectives of the project
 
Full Resolt Report
Full Resolt ReportFull Resolt Report
Full Resolt Report
 
Top 40 MVC Interview Questions and Answers | Edureka
Top 40 MVC Interview Questions and Answers | EdurekaTop 40 MVC Interview Questions and Answers | Edureka
Top 40 MVC Interview Questions and Answers | Edureka
 
mvc development company in UK
mvc development company in UKmvc development company in UK
mvc development company in UK
 
SSAS, MDX , Cube understanding, Browsing and Tools information
SSAS, MDX , Cube understanding, Browsing and Tools information SSAS, MDX , Cube understanding, Browsing and Tools information
SSAS, MDX , Cube understanding, Browsing and Tools information
 
SUG Bangalore - Extending Sitecore Experience Commerce 9 Business Tools
SUG Bangalore - Extending Sitecore Experience Commerce 9 Business ToolsSUG Bangalore - Extending Sitecore Experience Commerce 9 Business Tools
SUG Bangalore - Extending Sitecore Experience Commerce 9 Business Tools
 
Webinar - Develop your autodesk designing skills with conceptual design colla...
Webinar - Develop your autodesk designing skills with conceptual design colla...Webinar - Develop your autodesk designing skills with conceptual design colla...
Webinar - Develop your autodesk designing skills with conceptual design colla...
 
Shravana internship in ICT academy in collaboration with caogemini.pptx
Shravana internship in ICT academy in collaboration with caogemini.pptxShravana internship in ICT academy in collaboration with caogemini.pptx
Shravana internship in ICT academy in collaboration with caogemini.pptx
 
Cursos sql server .net visual basic octubre 2010
Cursos sql server .net visual basic octubre 2010 Cursos sql server .net visual basic octubre 2010
Cursos sql server .net visual basic octubre 2010
 
A Guide to CodeIgniter Web Application Development.pdf
A Guide to CodeIgniter Web Application Development.pdfA Guide to CodeIgniter Web Application Development.pdf
A Guide to CodeIgniter Web Application Development.pdf
 
Web Layout Generation (IC-SCCE 2006)
Web Layout Generation (IC-SCCE 2006)Web Layout Generation (IC-SCCE 2006)
Web Layout Generation (IC-SCCE 2006)
 
Oracle Business Intelligence.pptx
Oracle Business Intelligence.pptxOracle Business Intelligence.pptx
Oracle Business Intelligence.pptx
 
Oracle Business Intelligence: Extracting Insights from Data
Oracle Business Intelligence: Extracting Insights from DataOracle Business Intelligence: Extracting Insights from Data
Oracle Business Intelligence: Extracting Insights from Data
 
Industrial training
Industrial trainingIndustrial training
Industrial training
 
MANISH_CGI_MSBI
MANISH_CGI_MSBIMANISH_CGI_MSBI
MANISH_CGI_MSBI
 
HusbandLauri
HusbandLauriHusbandLauri
HusbandLauri
 
IRJET- A Study Focused on Web Application Development using MVC Design Pa...
IRJET-  	  A Study Focused on Web Application Development using MVC Design Pa...IRJET-  	  A Study Focused on Web Application Development using MVC Design Pa...
IRJET- A Study Focused on Web Application Development using MVC Design Pa...
 
20764 Administering a SQL Database Infrastructure Training @ multisoft Systems
20764 Administering a SQL Database Infrastructure Training @ multisoft Systems20764 Administering a SQL Database Infrastructure Training @ multisoft Systems
20764 Administering a SQL Database Infrastructure Training @ multisoft Systems
 
Principles of MVC for PHP Developers
Principles of MVC for PHP DevelopersPrinciples of MVC for PHP Developers
Principles of MVC for PHP Developers
 
internship final web development ppt[1].pptx
internship final web development ppt[1].pptxinternship final web development ppt[1].pptx
internship final web development ppt[1].pptx
 

More from MuhammadBakri13 (9)

Chapter 4 stack and queue
Chapter 4 stack and queueChapter 4 stack and queue
Chapter 4 stack and queue
 
Chapter 02 - Database Development
Chapter 02 - Database DevelopmentChapter 02 - Database Development
Chapter 02 - Database Development
 
Chapter 14 Searching and Sorting
Chapter 14 Searching and SortingChapter 14 Searching and Sorting
Chapter 14 Searching and Sorting
 
Chapter 09-Trees
Chapter 09-TreesChapter 09-Trees
Chapter 09-Trees
 
Python Objects
Python ObjectsPython Objects
Python Objects
 
Looping
LoopingLooping
Looping
 
Conditional Statements
Conditional StatementsConditional Statements
Conditional Statements
 
Function
FunctionFunction
Function
 
Introduction to Python
Introduction to PythonIntroduction to Python
Introduction to Python
 

Recently uploaded

AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ankushspencer015
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 

Recently uploaded (20)

Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Vivazz, Mieres Social Housing Design Spain
Vivazz, Mieres Social Housing Design SpainVivazz, Mieres Social Housing Design Spain
Vivazz, Mieres Social Housing Design Spain
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 

Views in MySQL

  • 1. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 MySQL Views Creating, Updating, and Drop Views 1FAKULTAS TEKNIK DAN ILMU KOMPUTER UNIVERSITAS TEKNOKRAT INDONESIA
  • 2. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 Kita akan belajar untuk membuat, mengubah, dan menghapus VIEWS. Termasuk cara menggunakan view dalam menampilkan informasi pada basis data 2 Learning Objectives
  • 3. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 3 1.Definisi Views 2.CREATE 3.UPDATE 4.DROP Outlines
  • 4. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 Definition 4
  • 5. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 In SQL, a view is a virtual table based on the result-set of an SQL statement. 5
  • 6. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 A view contains rows and columns, just like a real table. The fields in a view are fields from one or more real tables in the database. 6
  • 7. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 You can add SQL functions, WHERE, and JOIN statements to a view and present the data as if the data were coming from one single table. 7
  • 8. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 CREATE 8
  • 9. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 9 CREATE VIEW view_name AS SELECT column1, column2, ... FROM table_name WHERE condition;
  • 10. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 CREATE or REPLACE 10
  • 11. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 11 CREATE OR REPLACE VIEW view_name AS SELECT column1, column2, ... FROM table_name WHERE condition;
  • 12. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 DROP 12
  • 13. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 13 DROP VIEW view_name;
  • 14. Muhammad Bakri | FTIK | Universitas Teknokrat Indonesia © 2020 Thank You 14