SlideShare a Scribd company logo
Week 7
57-01012-62009-8 Thanaphat Kalaya
Task 1
Implement last week relations to database using selected DBMS
Solution
Relations
Cinemas
Theaters
show
Movies
c_id
t_id seat_cap c_id
t_id m_id time_slot price num_adult num_child
m_id
Solution
Relations
Cinemas
Theaters
show
Movies
c_id
t_id seat_cap c_id
t_id m_id time_slot price num_adult num_child
m_id
Solution
Relations
Cinemas
Theaters
show
Movies
c_id
t_id seat_cap c_id
t_id m_id time_slot price num_adult num_child
m_id
Note : foreign keys
Solution
Relations
Cinemas
Theaters
show
Movies
c_id
t_id seat_cap c_id
t_id m_id time_slot price num_adult num_child
m_id
Solution
code : cinemas
CREATE TABLE `cinemas` (
`c_id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`c_name` CHAR(50) NOT NULL DEFAULT '0',
PRIMARY KEY (`c_id`)
);
Solution
code : theaters
CREATE TABLE `theaters` (
`t_id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`t_num` INT(10) NOT NULL,
`seat_cap` INT(10) UNSIGNED NOT NULL,
`c_id` INT(10) UNSIGNED NOT NULL,
PRIMARY KEY (`t_id`),
INDEX `c_id` (`c_id`),
CONSTRAINT `c_id` FOREIGN KEY (`c_id`) REFERENCES `cinemas` (`c_id`)
);
Solution
code : theaters
CREATE TABLE `movies` (
`m_id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`m_name` CHAR(50) NULL DEFAULT '0',
`m_release` DATE NOT NULL,
PRIMARY KEY (`m_id`)
);
Solution
code : theaters
CREATE TABLE `shows` (
`t_id` INT(10) UNSIGNED NOT NULL,
`m_id` INT(10) UNSIGNED NOT NULL,
`time_slot` DATETIME NOT NULL,
`price` INT(11) UNSIGNED NOT NULL,
`num_adult` INT(11) UNSIGNED NOT NULL,
`num_child` INT(11) UNSIGNED NOT NULL,
INDEX `t_id` (`t_id`),
INDEX `m_id` (`m_id`),
CONSTRAINT `m_id` FOREIGN KEY (`m_id`) REFERENCES `movies` (`m_id`),
CONSTRAINT `t_id` FOREIGN KEY (`t_id`) REFERENCES `theaters` (`t_id`)
);
Task 2
Insert random data into your designed database using selected
DBMS
Solution
random_to_theaterDB.py
Solution
random_to_theaterDB.py
run the code
…
… (1 hrs. later)
…
… (6 hrs. later)
…
okey I think I should stop by now.
(8 hrs. later)
Result
Result
Result
Result
Result
Result
The program generated
- 19 rows of data for table “cinemas”
- 530 rows of data for table “movies”
- 541,457 rows of data for table “shows”
- 208 rows of data for table “theaters”
Task 3
Write 5 meaningful/practical SQL queries
#1 Query
select
cinemas.c_name,
movies.m_name,
theaters.t_num,
shows.time_slot,
shows.price
from shows
inner join movies on shows.m_id = movies.m_id
inner join theaters on theaters.t_id = shows.t_id
inner join cinemas on cinemas.c_id = theaters.c_id
order by c_name,m_name,time_slot,t_num,price;
#1 Query Result (2.360 sec.)
#2 Query
select
cinemas.c_name,
movies.m_name,
theaters.t_num,
shows.time_slot,
round((shows.num_adult / (shows.num_adult + shows.num_child)) * 100) as percent_adult,
round((shows.num_child / (shows.num_adult + shows.num_child)) * 100) as percent_child,
shows.price*(shows.num_adult + shows.num_child) as income
from shows
inner join movies on shows.m_id = movies.m_id
inner join theaters on theaters.t_id = shows.t_id
inner join cinemas on cinemas.c_id = theaters.c_id
order by c_name,m_name,time_slot,t_num,price;
#2 Query Result (2.766 sec.)
#3 Query
select
cinemas.c_name,
movies.m_name,
theaters.t_num,
shows.time_slot,
shows.price,
round((shows.num_adult / (shows.num_adult + shows.num_child)) * 100) as percent_adult,
round((shows.num_child / (shows.num_adult + shows.num_child)) * 100) as percent_child,
shows.price*(shows.num_adult + shows.num_child) as income
from shows
inner join movies on shows.m_id = movies.m_id
inner join theaters on theaters.t_id = shows.t_id
inner join cinemas on cinemas.c_id = theaters.c_id
order by c_name,m_name,time_slot,t_num,price;
#3 Query Result (2.782 sec.)
#4 Query
select
cinemas.c_name,
movies.m_name,
theaters.t_num,
shows.time_slot,
shows.price,
shows.num_adult,
shows.num_child,
shows.num_adult + shows.num_child as num_customers,
theaters.seat_cap,
round((shows.num_adult / (shows.num_adult + shows.num_child)) * 100) as percent_adult,
round((shows.num_child / (shows.num_adult + shows.num_child)) * 100) as percent_child,
shows.price*(shows.num_adult + shows.num_child) as income
from shows
inner join movies on shows.m_id = movies.m_id
inner join theaters on theaters.t_id = shows.t_id
inner join cinemas on cinemas.c_id = theaters.c_id
order by c_name,m_name,time_slot,t_num,price;
#4 Query Result (3.063 sec.)
#5 Query
select distinct
movies.m_name,
sum(shows.price*(shows.num_adult + shows.num_child)) as total_income
from shows
inner join movies on shows.m_id = movies.m_id
group by movies.m_id
order by total_income desc;
#5 Query Result (0.406 sec.)
End of week 7

More Related Content

Viewers also liked

The future [of pixels] is in our hands (first draft)
The future [of pixels] is in our hands (first draft)The future [of pixels] is in our hands (first draft)
The future [of pixels] is in our hands (first draft)Timothy Duquesne
 
التشبيه التمثيلي
التشبيه التمثيليالتشبيه التمثيلي
التشبيه التمثيليAyaman Alfaleet
 
черные дыры
черные дырычерные дыры
черные дырыAl Dis
 
JavaScript code academy - introduction
JavaScript code academy - introductionJavaScript code academy - introduction
JavaScript code academy - introductionJaroslav Kubíček
 
Respuesta ONUDC exportación de coca
Respuesta ONUDC exportación de cocaRespuesta ONUDC exportación de coca
Respuesta ONUDC exportación de cocaAlejandra Prado
 
Estrategias metodologicas a distancia
Estrategias metodologicas a distanciaEstrategias metodologicas a distancia
Estrategias metodologicas a distanciad14f70g03aa
 
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...Viviane Acunha
 

Viewers also liked (10)

The future [of pixels] is in our hands (first draft)
The future [of pixels] is in our hands (first draft)The future [of pixels] is in our hands (first draft)
The future [of pixels] is in our hands (first draft)
 
التشبيه التمثيلي
التشبيه التمثيليالتشبيه التمثيلي
التشبيه التمثيلي
 
черные дыры
черные дырычерные дыры
черные дыры
 
Financing company
Financing companyFinancing company
Financing company
 
Epoker
EpokerEpoker
Epoker
 
JavaScript code academy - introduction
JavaScript code academy - introductionJavaScript code academy - introduction
JavaScript code academy - introduction
 
Respuesta ONUDC exportación de coca
Respuesta ONUDC exportación de cocaRespuesta ONUDC exportación de coca
Respuesta ONUDC exportación de coca
 
Estrategias metodologicas a distancia
Estrategias metodologicas a distanciaEstrategias metodologicas a distancia
Estrategias metodologicas a distancia
 
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...
EFEITOS DO EXERCÍCIO FÍSICO SOBRE A VIA AKT/eNOS E AMPK/eNOS EM AORTA DE RATO...
 
Fertilization of angiospermic plant
Fertilization of angiospermic plantFertilization of angiospermic plant
Fertilization of angiospermic plant
 

Similar to W7 57-010126-2009-8

DBMS Case Study B3.pptx
DBMS Case Study B3.pptxDBMS Case Study B3.pptx
DBMS Case Study B3.pptxsahithisammeta
 
Objectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxObjectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxamit657720
 
Objectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxObjectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxvannagoforth
 
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter AnalysisIBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter AnalysisTorsten Steinbach
 
Informatics Practices (new) solution CBSE 2021, Compartment, improvement ex...
Informatics Practices (new) solution CBSE  2021, Compartment,  improvement ex...Informatics Practices (new) solution CBSE  2021, Compartment,  improvement ex...
Informatics Practices (new) solution CBSE 2021, Compartment, improvement ex...FarhanAhmade
 
Online Movie Ticket Booking
Online Movie Ticket BookingOnline Movie Ticket Booking
Online Movie Ticket BookingAstha Patel
 
Modify Assignment 5 toReplace the formatted output method (toStri.docx
Modify Assignment 5 toReplace the formatted output method (toStri.docxModify Assignment 5 toReplace the formatted output method (toStri.docx
Modify Assignment 5 toReplace the formatted output method (toStri.docxadelaidefarmer322
 
Capstone Project: Master's of Science in Data Science
Capstone Project: Master's of Science in Data Science Capstone Project: Master's of Science in Data Science
Capstone Project: Master's of Science in Data Science Silvia Qu
 
AWS July Webinar Series: Amazon Redshift Optimizing Performance
AWS July Webinar Series: Amazon Redshift Optimizing PerformanceAWS July Webinar Series: Amazon Redshift Optimizing Performance
AWS July Webinar Series: Amazon Redshift Optimizing PerformanceAmazon Web Services
 
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...Lucidworks
 
Naive application of Machine Learning to Software Development
Naive application of Machine Learning to Software DevelopmentNaive application of Machine Learning to Software Development
Naive application of Machine Learning to Software DevelopmentAndriy Khavryuchenko
 
PyCon Siberia 2016. Не доверяйте тестам!
PyCon Siberia 2016. Не доверяйте тестам!PyCon Siberia 2016. Не доверяйте тестам!
PyCon Siberia 2016. Не доверяйте тестам!Ivan Tsyganov
 
The Vanishing Pattern: from iterators to generators in Python
The Vanishing Pattern: from iterators to generators in PythonThe Vanishing Pattern: from iterators to generators in Python
The Vanishing Pattern: from iterators to generators in PythonOSCON Byrum
 
Baseball Prediction Model on Tensorflow
Baseball Prediction Model on TensorflowBaseball Prediction Model on Tensorflow
Baseball Prediction Model on TensorflowJay Ryu
 

Similar to W7 57-010126-2009-8 (20)

DBMS Case Study B3.pptx
DBMS Case Study B3.pptxDBMS Case Study B3.pptx
DBMS Case Study B3.pptx
 
Quality Python Homework Help
Quality Python Homework HelpQuality Python Homework Help
Quality Python Homework Help
 
Objectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxObjectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docx
 
Objectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docxObjectives The main objective of this assignment is checking .docx
Objectives The main objective of this assignment is checking .docx
 
Performance
PerformancePerformance
Performance
 
sql-dml.ppt
sql-dml.pptsql-dml.ppt
sql-dml.ppt
 
TMDb movie dataset by kaggle
TMDb movie dataset by kaggleTMDb movie dataset by kaggle
TMDb movie dataset by kaggle
 
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter AnalysisIBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
IBM Insight 2015 - 1824 - Using Bluemix and dashDB for Twitter Analysis
 
Decision Tree.pptx
Decision Tree.pptxDecision Tree.pptx
Decision Tree.pptx
 
Informatics Practices (new) solution CBSE 2021, Compartment, improvement ex...
Informatics Practices (new) solution CBSE  2021, Compartment,  improvement ex...Informatics Practices (new) solution CBSE  2021, Compartment,  improvement ex...
Informatics Practices (new) solution CBSE 2021, Compartment, improvement ex...
 
Online Movie Ticket Booking
Online Movie Ticket BookingOnline Movie Ticket Booking
Online Movie Ticket Booking
 
Modify Assignment 5 toReplace the formatted output method (toStri.docx
Modify Assignment 5 toReplace the formatted output method (toStri.docxModify Assignment 5 toReplace the formatted output method (toStri.docx
Modify Assignment 5 toReplace the formatted output method (toStri.docx
 
Capstone Project: Master's of Science in Data Science
Capstone Project: Master's of Science in Data Science Capstone Project: Master's of Science in Data Science
Capstone Project: Master's of Science in Data Science
 
08 Functions
08 Functions08 Functions
08 Functions
 
AWS July Webinar Series: Amazon Redshift Optimizing Performance
AWS July Webinar Series: Amazon Redshift Optimizing PerformanceAWS July Webinar Series: Amazon Redshift Optimizing Performance
AWS July Webinar Series: Amazon Redshift Optimizing Performance
 
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...
Art and Science Come Together When Mastering Relevance Ranking - Tom Burgmans...
 
Naive application of Machine Learning to Software Development
Naive application of Machine Learning to Software DevelopmentNaive application of Machine Learning to Software Development
Naive application of Machine Learning to Software Development
 
PyCon Siberia 2016. Не доверяйте тестам!
PyCon Siberia 2016. Не доверяйте тестам!PyCon Siberia 2016. Не доверяйте тестам!
PyCon Siberia 2016. Не доверяйте тестам!
 
The Vanishing Pattern: from iterators to generators in Python
The Vanishing Pattern: from iterators to generators in PythonThe Vanishing Pattern: from iterators to generators in Python
The Vanishing Pattern: from iterators to generators in Python
 
Baseball Prediction Model on Tensorflow
Baseball Prediction Model on TensorflowBaseball Prediction Model on Tensorflow
Baseball Prediction Model on Tensorflow
 

Recently uploaded

INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdfINU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdfbu07226
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonSteve Thomason
 
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...Nguyen Thanh Tu Collection
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxJheel Barad
 
How to Manage Notification Preferences in the Odoo 17
How to Manage Notification Preferences in the Odoo 17How to Manage Notification Preferences in the Odoo 17
How to Manage Notification Preferences in the Odoo 17Celine George
 
Matatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptxMatatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptxJenilouCasareno
 
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...Sayali Powar
 
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptxJose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptxricssacare
 
Basic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.pptBasic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.pptSourabh Kumar
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPCeline George
 
2024_Student Session 2_ Set Plan Preparation.pptx
2024_Student Session 2_ Set Plan Preparation.pptx2024_Student Session 2_ Set Plan Preparation.pptx
2024_Student Session 2_ Set Plan Preparation.pptxmansk2
 
size separation d pharm 1st year pharmaceutics
size separation d pharm 1st year pharmaceuticssize separation d pharm 1st year pharmaceutics
size separation d pharm 1st year pharmaceuticspragatimahajan3
 
[GDSC YCCE] Build with AI Online Presentation
[GDSC YCCE] Build with AI Online Presentation[GDSC YCCE] Build with AI Online Presentation
[GDSC YCCE] Build with AI Online PresentationGDSCYCCE
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfjoachimlavalley1
 
The Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational ResourcesThe Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational Resourcesaileywriter
 
Gyanartha SciBizTech Quiz slideshare.pptx
Gyanartha SciBizTech Quiz slideshare.pptxGyanartha SciBizTech Quiz slideshare.pptx
Gyanartha SciBizTech Quiz slideshare.pptxShibin Azad
 
Industrial Training Report- AKTU Industrial Training Report
Industrial Training Report- AKTU Industrial Training ReportIndustrial Training Report- AKTU Industrial Training Report
Industrial Training Report- AKTU Industrial Training ReportAvinash Rai
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleCeline George
 
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General Quiz
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General QuizPragya Champions Chalice 2024 Prelims & Finals Q/A set, General Quiz
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General QuizPragya - UEM Kolkata Quiz Club
 

Recently uploaded (20)

INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdfINU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
How to Manage Notification Preferences in the Odoo 17
How to Manage Notification Preferences in the Odoo 17How to Manage Notification Preferences in the Odoo 17
How to Manage Notification Preferences in the Odoo 17
 
Matatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptxMatatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptx
 
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...
UNIT – IV_PCI Complaints: Complaints and evaluation of complaints, Handling o...
 
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptxJose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
 
Basic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.pptBasic_QTL_Marker-assisted_Selection_Sourabh.ppt
Basic_QTL_Marker-assisted_Selection_Sourabh.ppt
 
Operations Management - Book1.p - Dr. Abdulfatah A. Salem
Operations Management - Book1.p  - Dr. Abdulfatah A. SalemOperations Management - Book1.p  - Dr. Abdulfatah A. Salem
Operations Management - Book1.p - Dr. Abdulfatah A. Salem
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
 
2024_Student Session 2_ Set Plan Preparation.pptx
2024_Student Session 2_ Set Plan Preparation.pptx2024_Student Session 2_ Set Plan Preparation.pptx
2024_Student Session 2_ Set Plan Preparation.pptx
 
size separation d pharm 1st year pharmaceutics
size separation d pharm 1st year pharmaceuticssize separation d pharm 1st year pharmaceutics
size separation d pharm 1st year pharmaceutics
 
[GDSC YCCE] Build with AI Online Presentation
[GDSC YCCE] Build with AI Online Presentation[GDSC YCCE] Build with AI Online Presentation
[GDSC YCCE] Build with AI Online Presentation
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
The Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational ResourcesThe Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational Resources
 
Gyanartha SciBizTech Quiz slideshare.pptx
Gyanartha SciBizTech Quiz slideshare.pptxGyanartha SciBizTech Quiz slideshare.pptx
Gyanartha SciBizTech Quiz slideshare.pptx
 
Industrial Training Report- AKTU Industrial Training Report
Industrial Training Report- AKTU Industrial Training ReportIndustrial Training Report- AKTU Industrial Training Report
Industrial Training Report- AKTU Industrial Training Report
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
 
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General Quiz
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General QuizPragya Champions Chalice 2024 Prelims & Finals Q/A set, General Quiz
Pragya Champions Chalice 2024 Prelims & Finals Q/A set, General Quiz
 

W7 57-010126-2009-8