SlideShare ist ein Scribd-Unternehmen logo
1 von 72
SQL212 SQL Programming Workshop 2 – Joins, Subqueries, Unions, Calculations and Grouping Bookstore2 SQL212  Module 2
SQL212 Contact Information Bookstore2 SQL212  Module 2 P.O. Box 6142 Laguna Niguel, CA 92607 949-489-1472 http://www.d2associates.com [email_address]   Copyright 2001-2009. All rights reserved.
SQL212 SQL Programming Part 1 – Joins, Subqueries Bookstore2 SQL212  Module 2
Bookstore2 SQL212  Module 2 Relational Database with constraints (from text)
Warning! ,[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Joins ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Inner Join ,[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Inner Join Bookstore2 SQL212  Module 2 Older Syntax: Select <column-list> From <tablelist> Where <predicate> Still very commonly used
Inner Join Examples ,[object Object],[object Object],Bookstore2 SQL212  Module 2
Inner Join Bookstore2 SQL212  Module 2 Example using older syntax: SELECT  customer_first_name, customer_street, order_numb, order_date from  customers, orders Where  customers.customer_numb = orders.customer_numb
Inner Join with Result Bookstore2 SQL212  Module 2
Inner Join (New Syntax) Bookstore2 SQL212  Module 2 Basic SQL 92 Syntax: Select <column-list> From <table1> Inner join <table2> On <join condition>
Inner Join Bookstore2 SQL212  Module 2 Basic Example: SELECT  customer_first_name, customer_street, order_numb, order_date from  customers inner join  orders on  customers.customer_numb = orders.customer_numb
Inner Join with Result Bookstore2 SQL212  Module 2
Inner Join over Multiple columns ,[object Object],[object Object],Bookstore2 SQL212  Module 2
Bookstore2 SQL212  Module 2 Inner Join Result in MS Access
Inner Join ,[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Cross Join ,[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Dual ,[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Bookstore2 SQL212  Module 2 Cross Join Result Set in MS Access
Additional SQL92 Syntax ,[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Natural Join Bookstore2 SQL212  Module 2
Joining More than Two Tables ,[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Joining More than Two Tables ,[object Object],Bookstore2 SQL212  Module 2 SELECT customer_first_name, customer_street, orders.order_numb, orders.order_date, orderlines.isbn, orderlines.quantity FROM customers INNER JOIN orders ON customers.customer_numb=orders.customer_numb INNER JOIN orderlines on orders.order_numb = orderlines.order_numb
Multi-table Join with Results Bookstore2 SQL212  Module 2
Bookstore2 SQL212  Module 2 MS Access Multi-table Join Result Set
Own Your Own ,[object Object],Bookstore2 SQL212  Module 2
Sample Database ,[object Object],[object Object],Bookstore2 SQL212  Module 2
Correlation Names (Table Aliases) ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Self Joins ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Self Joins Bookstore2 SQL212  Module 2 SELECT e.*, m.name FROM employees AS e, employees AS m WHERE e.managerid = m.employeeid;
Bookstore2 SQL212  Module 2
Outer Joins ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Left Outer Join Bookstore2 SQL212  Module 2 Basic SQL 92 Syntax: Select <column-list> From <table1> Left [outer] join <table2> On <join condition>
Outer Join Example ,[object Object],[object Object],Bookstore2 SQL212  Module 2
Left-Join Bookstore2 SQL212  Module 2 Basic Example: SELECT customer_first_name, customer_street, order_numb, order_date from customers as c left join orders as o on c.customer_numb = o.customer_numb
Bookstore2 SQL212  Module 2
Left Join with Results Bookstore2 SQL212  Module 2
SQL200 SQL Programming Part 2– Subqueries, Unions Bookstore2 SQL212  Module 2
Subqueries ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Subquery Example ,[object Object],[object Object],Bookstore2 SQL212  Module 2
Uncorrelated Subquery Bookstore2 SQL212  Module 2 select isbn, quantity from orderlines ol where ol.order_numb in  (select o.order_numb from orders o where order_date between ‘1-JAN-99’ and ’31-DEC-99’)
Uncorrelated Subquery with Results Bookstore2 SQL212  Module 2
Negative Subquery ,[object Object],Bookstore2 SQL212  Module 2
Negative Subquery Bookstore2 SQL212  Module 2 select isbn, quantity from orderlines ol where ol.order_numb not in  (select o.order_numb from orders o where order_date between ‘1-JAN-99’ and 31-DEC-99’)
Negative Subquery with Results Bookstore2 SQL212  Module 2
Correlated Subquery with Exists ,[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Correlated subquery with Exists Bookstore2 SQL212  Module 2 SELECT isbn, quantity FROM orderlines AS ol WHERE exists  (select * from orders o where ol.order_numb = o.order_numb and o.order_date between ‘1-JAN-99’ and ‘31-DEC-99’); This type of query covered in intermediate SQL class
Unions ,[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Unions Bookstore2 SQL212  Module 2 Select <column-list> from <table1> Union [ALL] Select <same-columns> from <table2>
Union Example ,[object Object],[object Object],Bookstore2 SQL212  Module 2
Unions Bookstore2 SQL212  Module 2
Union Results Bookstore2 SQL212  Module 2
SQL200 SQL Programming Part 3 – Calculations, Aggregates Bookstore2 SQL212  Module 2
Calculated Fields ,[object Object],Bookstore2 SQL212  Module 2 SELECT order_numb, quantity, cost_each,  quantity*cost_each as extension FROM orderlines
Calculated field in the Result Bookstore2 SQL212  Module 2
Bookstore2 SQL212  Module 2
String Manipulation ,[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Concatenation ,[object Object],[object Object],Bookstore2 SQL212  Module 2 Basic syntax: (Oracle, std) Field1 || Field2
Concatenation Bookstore2 SQL212  Module 2 select customer_first_name || ‘ ‘ || trim(customer_last_name) as Name from customers
Bookstore2 SQL212  Module 2
Date Functions ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Aggregate Functions ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Aggregate Functions Bookstore2 SQL212  Module 2 Basic syntax: Select <function>(<column>) From <table> Group by <column-list> Having <predicate> Group by all columns to left of one(s) you want to aggregate
Aggregate Functions Bookstore2 SQL212  Module 2 SELECT orderlines.order_numb, Count(*) AS “Number of Order Lines” , Sum(orderlines.quantity) AS SumOfquantity, Sum(quantity * cost_each) AS extension FROM orderlines GROUP BY orderlines.order_numb having count(*)  > 1
Bookstore2 SQL212  Module 2
Having vs. Where ,[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Exercise ,[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore2 SQL212  Module 2
Exercise Result Bookstore2 SQL212  Module 2 [end module]
Notes Bookstore2 SQL212  Module 2
Notes Bookstore2 SQL212  Module 2
Notes Bookstore2 SQL212  Module 2

Weitere ähnliche Inhalte

Was ist angesagt?

Database Design Project-Oracle 11g
Database Design  Project-Oracle 11g Database Design  Project-Oracle 11g
Database Design Project-Oracle 11g
Sunny U Okoro
 
DBMS lab manual
DBMS lab manualDBMS lab manual
DBMS lab manual
maha tce
 
โครงการ 5 บท
โครงการ 5 บทโครงการ 5 บท
โครงการ 5 บท
MareenaHahngeh
 

Was ist angesagt? (19)

Assignment#05
Assignment#05Assignment#05
Assignment#05
 
Assignment#02
Assignment#02Assignment#02
Assignment#02
 
SQL Server Learning Drive
SQL Server Learning Drive SQL Server Learning Drive
SQL Server Learning Drive
 
Sql Tuning
Sql TuningSql Tuning
Sql Tuning
 
Dbms practical list
Dbms practical listDbms practical list
Dbms practical list
 
Dbms lab Manual
Dbms lab ManualDbms lab Manual
Dbms lab Manual
 
Partitioning on Oracle 12c - What changed on the most important Oracle feature
Partitioning on Oracle 12c - What changed on the most important Oracle featurePartitioning on Oracle 12c - What changed on the most important Oracle feature
Partitioning on Oracle 12c - What changed on the most important Oracle feature
 
Partitioning tables and indexing them
Partitioning tables and indexing them Partitioning tables and indexing them
Partitioning tables and indexing them
 
Database Design Project-Oracle 11g
Database Design  Project-Oracle 11g Database Design  Project-Oracle 11g
Database Design Project-Oracle 11g
 
Assignment#04
Assignment#04Assignment#04
Assignment#04
 
DBMS lab manual
DBMS lab manualDBMS lab manual
DBMS lab manual
 
โครงการ 5 บท
โครงการ 5 บทโครงการ 5 บท
โครงการ 5 บท
 
Assignment#01
Assignment#01Assignment#01
Assignment#01
 
SQL Basics
SQL BasicsSQL Basics
SQL Basics
 
Sql queries
Sql queriesSql queries
Sql queries
 
Rdbms day3
Rdbms day3Rdbms day3
Rdbms day3
 
Lab
LabLab
Lab
 
Assignment#08
Assignment#08Assignment#08
Assignment#08
 
CIS 336 Inspiring Innovation -- cis336.com
CIS 336 Inspiring Innovation -- cis336.comCIS 336 Inspiring Innovation -- cis336.com
CIS 336 Inspiring Innovation -- cis336.com
 

Andere mochten auch

Sql basics
Sql basicsSql basics
Sql basics
Kumar
 
Plsql quick guide
Plsql quick guidePlsql quick guide
Plsql quick guide
1bi08me024
 
Subqueries, Backups, Users and Privileges
Subqueries, Backups, Users and PrivilegesSubqueries, Backups, Users and Privileges
Subqueries, Backups, Users and Privileges
Ashwin Dinoriya
 
PL/SQL Code for Sample Projects
PL/SQL Code for Sample ProjectsPL/SQL Code for Sample Projects
PL/SQL Code for Sample Projects
jwjablonski
 
Advanced Database Lecture Notes
Advanced Database Lecture NotesAdvanced Database Lecture Notes
Advanced Database Lecture Notes
Jasour Obeidat
 

Andere mochten auch (20)

Pl sql guide
Pl sql guidePl sql guide
Pl sql guide
 
AIN100B Microsoft Access Level 2
AIN100B Microsoft Access Level 2AIN100B Microsoft Access Level 2
AIN100B Microsoft Access Level 2
 
AIN106 Access Reporting and Analysis
AIN106 Access Reporting and AnalysisAIN106 Access Reporting and Analysis
AIN106 Access Reporting and Analysis
 
AIN102 Microsoft Access Queries
AIN102 Microsoft Access QueriesAIN102 Microsoft Access Queries
AIN102 Microsoft Access Queries
 
SQL302 Intermediate SQL
SQL302 Intermediate SQLSQL302 Intermediate SQL
SQL302 Intermediate SQL
 
SQL200A Microsoft Access SQL Design
SQL200A Microsoft Access SQL DesignSQL200A Microsoft Access SQL Design
SQL200A Microsoft Access SQL Design
 
Sql basics
Sql basicsSql basics
Sql basics
 
Plsql quick guide
Plsql quick guidePlsql quick guide
Plsql quick guide
 
Exercise 6
Exercise 6Exercise 6
Exercise 6
 
Sql subquery
Sql subquerySql subquery
Sql subquery
 
Sql basics
Sql basicsSql basics
Sql basics
 
Oracle database 12c 2 day + performance tuning guide
Oracle database 12c 2 day + performance tuning guideOracle database 12c 2 day + performance tuning guide
Oracle database 12c 2 day + performance tuning guide
 
Introduction to MySQL and phpMyAdmin
Introduction to MySQL and phpMyAdminIntroduction to MySQL and phpMyAdmin
Introduction to MySQL and phpMyAdmin
 
Sub query_SQL
Sub query_SQLSub query_SQL
Sub query_SQL
 
pl/sql online Training|sql online Training | iTeknowledge
pl/sql online Training|sql online Training | iTeknowledgepl/sql online Training|sql online Training | iTeknowledge
pl/sql online Training|sql online Training | iTeknowledge
 
Subqueries
SubqueriesSubqueries
Subqueries
 
Adbms lab manual
Adbms lab manualAdbms lab manual
Adbms lab manual
 
Subqueries, Backups, Users and Privileges
Subqueries, Backups, Users and PrivilegesSubqueries, Backups, Users and Privileges
Subqueries, Backups, Users and Privileges
 
PL/SQL Code for Sample Projects
PL/SQL Code for Sample ProjectsPL/SQL Code for Sample Projects
PL/SQL Code for Sample Projects
 
Advanced Database Lecture Notes
Advanced Database Lecture NotesAdvanced Database Lecture Notes
Advanced Database Lecture Notes
 

Ähnlich wie SQL212.2 Introduction to SQL using Oracle Module 2

New features-in-mariadb-and-mysql-optimizers
New features-in-mariadb-and-mysql-optimizersNew features-in-mariadb-and-mysql-optimizers
New features-in-mariadb-and-mysql-optimizers
Sergey Petrunya
 

Ähnlich wie SQL212.2 Introduction to SQL using Oracle Module 2 (20)

SQL302 Intermediate SQL Workshop 2
SQL302 Intermediate SQL Workshop 2SQL302 Intermediate SQL Workshop 2
SQL302 Intermediate SQL Workshop 2
 
SQL212.1 Introduction to SQL using Oracle Module 1
SQL212.1 Introduction to SQL using Oracle Module 1SQL212.1 Introduction to SQL using Oracle Module 1
SQL212.1 Introduction to SQL using Oracle Module 1
 
SQL200.3 Module 3
SQL200.3 Module 3SQL200.3 Module 3
SQL200.3 Module 3
 
SQL200.2 Module 2
SQL200.2 Module 2SQL200.2 Module 2
SQL200.2 Module 2
 
SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1
SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1
SQL202.1 Accelerated Introduction to SQL Using SQL Server Module 1
 
SQL202.3 Accelerated Introduction to SQL Using SQL Server Module 3
SQL202.3 Accelerated Introduction to SQL Using SQL Server Module 3SQL202.3 Accelerated Introduction to SQL Using SQL Server Module 3
SQL202.3 Accelerated Introduction to SQL Using SQL Server Module 3
 
RivieraJUG - MySQL 8.0 - What's new for developers.pdf
RivieraJUG - MySQL 8.0 - What's new for developers.pdfRivieraJUG - MySQL 8.0 - What's new for developers.pdf
RivieraJUG - MySQL 8.0 - What's new for developers.pdf
 
Die Neuheiten in MariaDB 10.2 und MaxScale 2.1
Die Neuheiten in MariaDB 10.2 und MaxScale 2.1Die Neuheiten in MariaDB 10.2 und MaxScale 2.1
Die Neuheiten in MariaDB 10.2 und MaxScale 2.1
 
Developers’ mDay 2019. - Bogdan Kecman, Oracle – MySQL 8.0 – why upgrade
Developers’ mDay 2019. - Bogdan Kecman, Oracle – MySQL 8.0 – why upgradeDevelopers’ mDay 2019. - Bogdan Kecman, Oracle – MySQL 8.0 – why upgrade
Developers’ mDay 2019. - Bogdan Kecman, Oracle – MySQL 8.0 – why upgrade
 
SQL201S Accelerated Introduction to MySQL Queries
SQL201S Accelerated Introduction to MySQL QueriesSQL201S Accelerated Introduction to MySQL Queries
SQL201S Accelerated Introduction to MySQL Queries
 
Dms 22319 micro project
Dms 22319 micro projectDms 22319 micro project
Dms 22319 micro project
 
Performance tuning
Performance tuningPerformance tuning
Performance tuning
 
Developer's Approach to Code Management
Developer's Approach to Code ManagementDeveloper's Approach to Code Management
Developer's Approach to Code Management
 
SQL/MX 3.6 Select for update feature
SQL/MX 3.6 Select for update featureSQL/MX 3.6 Select for update feature
SQL/MX 3.6 Select for update feature
 
Normalization.ppt
Normalization.pptNormalization.ppt
Normalization.ppt
 
Adbms
AdbmsAdbms
Adbms
 
sql_bootcamp.pdf
sql_bootcamp.pdfsql_bootcamp.pdf
sql_bootcamp.pdf
 
New features-in-mariadb-and-mysql-optimizers
New features-in-mariadb-and-mysql-optimizersNew features-in-mariadb-and-mysql-optimizers
New features-in-mariadb-and-mysql-optimizers
 
SQLQueries
SQLQueriesSQLQueries
SQLQueries
 
Part5 sql tune
Part5 sql tunePart5 sql tune
Part5 sql tune
 

Mehr von Dan D'Urso

Course Catalog
Course CatalogCourse Catalog
Course Catalog
Dan D'Urso
 

Mehr von Dan D'Urso (19)

LCD201d Database Diagramming with Lucidchart
LCD201d Database Diagramming with LucidchartLCD201d Database Diagramming with Lucidchart
LCD201d Database Diagramming with Lucidchart
 
Database Normalization
Database NormalizationDatabase Normalization
Database Normalization
 
VIS201d Visio Database Diagramming
VIS201d Visio Database DiagrammingVIS201d Visio Database Diagramming
VIS201d Visio Database Diagramming
 
PRJ101a Project 2013 Accelerated
PRJ101a Project 2013 AcceleratedPRJ101a Project 2013 Accelerated
PRJ101a Project 2013 Accelerated
 
PRJ101xl Project Libre Basic Training
PRJ101xl Project Libre Basic TrainingPRJ101xl Project Libre Basic Training
PRJ101xl Project Libre Basic Training
 
Introduction to coding using Python
Introduction to coding using PythonIntroduction to coding using Python
Introduction to coding using Python
 
Stem conference
Stem conferenceStem conference
Stem conference
 
Microsoft access self joins
Microsoft access self joinsMicrosoft access self joins
Microsoft access self joins
 
SQL302 Intermediate SQL Workshop 3
SQL302 Intermediate SQL Workshop 3SQL302 Intermediate SQL Workshop 3
SQL302 Intermediate SQL Workshop 3
 
Course Catalog
Course CatalogCourse Catalog
Course Catalog
 
SQL302 Intermediate SQL Workshop 1
SQL302 Intermediate SQL Workshop 1SQL302 Intermediate SQL Workshop 1
SQL302 Intermediate SQL Workshop 1
 
SQL212 Oracle SQL Manual
SQL212 Oracle SQL ManualSQL212 Oracle SQL Manual
SQL212 Oracle SQL Manual
 
SQL201W MySQL SQL Manual
SQL201W MySQL SQL ManualSQL201W MySQL SQL Manual
SQL201W MySQL SQL Manual
 
AIN100
AIN100AIN100
AIN100
 
SQL206 SQL Median
SQL206 SQL MedianSQL206 SQL Median
SQL206 SQL Median
 
SQL202 SQL Server SQL Manual
SQL202 SQL Server SQL ManualSQL202 SQL Server SQL Manual
SQL202 SQL Server SQL Manual
 
AIN102S Access string function sample queries
AIN102S Access string function sample queriesAIN102S Access string function sample queries
AIN102S Access string function sample queries
 
AIN102.1 Microsoft Access Queries Module 1
AIN102.1 Microsoft Access Queries Module 1AIN102.1 Microsoft Access Queries Module 1
AIN102.1 Microsoft Access Queries Module 1
 
AMP110 Microsoft Access Macros
AMP110 Microsoft Access MacrosAMP110 Microsoft Access Macros
AMP110 Microsoft Access Macros
 

Kürzlich hochgeladen

Kürzlich hochgeladen (20)

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

SQL212.2 Introduction to SQL using Oracle Module 2