SlideShare uma empresa Scribd logo
1 de 92
AIN102 Access Query Design Module 2 Admissions AIN102  Module 2 P.O. Box 6142 Laguna Niguel, CA 92607 949-489-1472 http://www.d2associates.com
AIN102 Contact Information Admissions AIN102  Module 2 P.O. Box 6142 Laguna Niguel, CA 92607 949-489-1472 http://www.d2associates.com [email_address]   Copyright 2001-20011 All rights reserved.
AIN102 Notes ,[object Object],[object Object],Admissions AIN102  Module 2
AIN102 Resources ,[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Module 2 ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2 ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
String Manipulation ,[object Object],[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
String Manipulation Admissions AIN102  Module 2
String Manipulation Admissions AIN102  Module 2
String Example Admissions AIN102  Module 2
Date Functions ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
DateDiff ,[object Object],Admissions AIN102  Module 2
DateDiff results Admissions AIN102  Module 2 Note: Access has  many date functions with many options.
Ex: Date Function – Month() Admissions AIN102  Module 2
Ex: Date Function – Month() Admissions AIN102  Module 2
Result of Month Function Admissions AIN102  Module 2
When you want to know more ,[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Summary Functions ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Summary Functions in Access Admissions AIN102  Module 2 Click the sum symbol Adds a total row
Summary Functions - Syntax Admissions AIN102  Module 2 Basic syntax: SELECT   function(column) FROM   table WHERE   filter-condition GROUP BY   column-list HAVING   group-filter Group by all columns to left of one(s) you to want aggregate
Simple Column Summaries Admissions AIN102  Module 2 This query counts patient admissions In the year 2001
Simple Column Summaries Admissions AIN102  Module 2
Simple Record Count Admissions AIN102  Module 2
“ The COUNTS” ,[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Grouping ,[object Object],[object Object],Admissions AIN102  Module 2
GROUP BY in Query Designer Admissions AIN102  Module 2
GROUP BY Problem Admissions AIN102  Module 2 Not an aggregate or group You will see this error a lot. Not to worry. It happens to everyone!
Group By Results Admissions AIN102  Module 2
Having ,[object Object],[object Object],Admissions AIN102  Module 2 HAVING (((Admissions.Diag_Code) Like "a*"))
Having – SQL View ,[object Object],[object Object],Admissions AIN102  Module 2
HAVING Admissions AIN102  Module 2
HAVING Results Admissions AIN102  Module 2
AIN102 Access Query Design Part 2 – Joins, Subqueries Admissions AIN102  Module 2
Admissions AIN102  Module 2 Database Design Diagram of the database for reference in joins
Joins ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Inner Join ,[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Inner Join Syntax Admissions AIN102  Module 2 Basic SQL 92 Syntax: SELECT   column-list FROM   table1  [ AS   alias ] INNER JOIN   table2  [ AS   alias ] ON   join-condition
Table Aliases ,[object Object],[object Object],Admissions AIN102  Module 2 Select t.id, s.lname From _traveler as t Inner join xLU_Staff as s On t.staffid  =  s.staffid Table alias
Inner Join Basic SQL Example Admissions AIN102  Module 2 Basic Example:  Add patient names to admissions data Two join tables Join condition
Inner Join Query Design Admissions AIN102  Module 2
Inner Join Results Admissions AIN102  Module 2
Inner Join over Multiple columns ,[object Object],[object Object],Admissions AIN102  Module 2 Select …. From tablea as ta Inner join tableb as tb On ta.key1 = tb.key1 And ta.key2 = tb.key2
Joining More than Two Tables ,[object Object],[object Object],[object Object],Admissions AIN102  Module 2
3 Table Query Results Admissions AIN102  Module 2
More on Aliases ,[object Object],[object Object],Admissions AIN102  Module 2
Outer Joins ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Left Outer Join Admissions AIN102  Module 2 Basic SQL 92 Syntax: SELECT   column-list FROM   table1 LEFT JOIN   table2 ON   join-condition
Left Outer Join (Right click on relationship to edit) Admissions AIN102  Module 2
Left Outer Join ,[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Left Outer Join Results Admissions AIN102  Module 2
Subqueries ,[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Multi-valued Subquery ,[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Multi-valued Subquery ,[object Object],Admissions AIN102  Module 2
Multi-valued Subquery Result Admissions AIN102  Module 2 No one was ever admitted with these diagnoses.
Single-valued Subquery Admissions AIN102  Module 2 Subquery that returns a single value Find all admissions with stays greater than the average stay
Single-valued Subquery Admissions AIN102  Module 2 Subquery that returns a single value
Single-valued Subquery Result Admissions AIN102  Module 2
Queries using Queries ,[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Queries using Queries Admissions AIN102  Module 2 Filter the prior query ( a little on the complicated side) for the year 2001
Queries using Queries Result Admissions AIN102  Module 2
AIN102 Access Query Design Part 3 – Unions, Action Queries Admissions AIN102  Module 2 D. H. D’Urso and Associates 949-489-1472 http://www.dhdursoassociates.com
Special Queries ,[object Object],[object Object],Admissions AIN102  Module 2
Special Queries ,[object Object],Admissions AIN102  Module 2
Admissions Database Admissions AIN102  Module 2 Diagram of the database for reference in part 3
Data Modification Queries Admissions AIN102  Module 2 SQL Action Query INSERT Append UPDATE Update DELETE Delete SELECT…INTO Maketable
Creating Action Queries ,[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Select Into…Maketable ,[object Object],Admissions AIN102  Module 2
Select Into…Maketable Admissions AIN102  Module 2 New table Existing table Make Table
Archived Labor History  Admissions AIN102  Module 2
Delete SQL ,[object Object],Admissions AIN102  Module 2 Basic Syntax: DELETE FROM   table-name WHERE   filter-criteria
Delete Admissions AIN102  Module 2 Example: Delete all archived records newer than 12/31/2001
Delete SQL Admissions AIN102  Module 2 Example: Delete all archived admissions_history newer than 12/31/01
Archive after DELETE Admissions AIN102  Module 2
More complex DELETE with FROM clause ,[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Append Query (SQL Insert) ,[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Single Row Insert Admissions AIN102  Module 2 Basic Syntax: Insert  [ into ]  table-name Values  ( value-list )
Single Row Insert Admissions AIN102  Module 2 Basic Example: INSERT into xLU_BuildStyle values(6, “Thick”) Not really used this way in MS Access. Typical MS Access use would be Insert…Select as shown in following slides.
Append Query (Multi-row insert) Admissions AIN102  Module 2
Multi-row Insert SQL Admissions AIN102  Module 2 Basic Syntax: INSERT  [ INTO ]  table-name SELECT   select-statement
Multi-row Insert (Append) Admissions AIN102  Module 2 Add back archived admissions_history newer than 12/31/01
Append (Insert) Results Admissions AIN102  Module 2
Update ,[object Object],Admissions AIN102  Module 2 Basic Syntax: UPDATE   table-name SET   field1  =  new value ,  field2  =  new value ,… WHERE  selection-criteria
Update in Query Designer Admissions AIN102  Module 2 New value
Update ,[object Object],Admissions AIN102  Module 2
Update Results Admissions AIN102  Module 2 New values Remember: you have to look at the affected table. No “result” is displayed.
Unions ,[object Object],[object Object],[object Object],[object Object],Admissions AIN102  Module 2
Union Syntax Admissions AIN102  Module 2 SELECT   column-list FROM   table1 UNION  [ ALL ] SELECT   same-columns FROM   table2
Union Example Admissions AIN102  Module 2
Union Result Admissions AIN102  Module 2
When you want to know more ,[object Object],[object Object],Admissions AIN102  Module 2
End Session 2 Admissions AIN102  Module 2 End of Class!
Notes Admissions AIN102  Module 2
Notes Admissions AIN102  Module 2

Mais conteúdo relacionado

Destaque

Get database properties using power shell in sql server 2008 techrepublic
Get database properties using power shell in sql server 2008   techrepublicGet database properties using power shell in sql server 2008   techrepublic
Get database properties using power shell in sql server 2008 techrepublic
Kaing Menglieng
 
MS-ACCESS:CREATE TAB(QUERY-SELECT WITH CONDITIONS, MAKE A TABLE,DELETE,APPNED...
MS-ACCESS:CREATE TAB(QUERY-SELECT WITH CONDITIONS, MAKE A TABLE,DELETE,APPNED...MS-ACCESS:CREATE TAB(QUERY-SELECT WITH CONDITIONS, MAKE A TABLE,DELETE,APPNED...
MS-ACCESS:CREATE TAB(QUERY-SELECT WITH CONDITIONS, MAKE A TABLE,DELETE,APPNED...
Ashish Saxena
 
Basic introduction to ms access
Basic introduction to ms accessBasic introduction to ms access
Basic introduction to ms access
jigeno
 
KaDouce AutoBio
KaDouce AutoBioKaDouce AutoBio
KaDouce AutoBio
Karine L
 
ArchEvolution In 1 Slide! By Copyright 2009 Andres Agostini (Andy) - Arlingto...
ArchEvolution In 1 Slide! By Copyright 2009 Andres Agostini (Andy) - Arlingto...ArchEvolution In 1 Slide! By Copyright 2009 Andres Agostini (Andy) - Arlingto...
ArchEvolution In 1 Slide! By Copyright 2009 Andres Agostini (Andy) - Arlingto...
Andres Agostini, Future Knowledgist
 

Destaque (20)

Basic Access Notes
Basic Access NotesBasic Access Notes
Basic Access Notes
 
AIA101.2.Access Queries Accelerated
AIA101.2.Access Queries AcceleratedAIA101.2.Access Queries Accelerated
AIA101.2.Access Queries Accelerated
 
Get database properties using power shell in sql server 2008 techrepublic
Get database properties using power shell in sql server 2008   techrepublicGet database properties using power shell in sql server 2008   techrepublic
Get database properties using power shell in sql server 2008 techrepublic
 
ITT PROJECT ON CREATE QUERY(QUERY-SELECT WITH CONDITION, MAKE A TABLE,APPEND,...
ITT PROJECT ON CREATE QUERY(QUERY-SELECT WITH CONDITION, MAKE A TABLE,APPEND,...ITT PROJECT ON CREATE QUERY(QUERY-SELECT WITH CONDITION, MAKE A TABLE,APPEND,...
ITT PROJECT ON CREATE QUERY(QUERY-SELECT WITH CONDITION, MAKE A TABLE,APPEND,...
 
Network topology
Network topologyNetwork topology
Network topology
 
MS-ACCESS:CREATE TAB(QUERY-SELECT WITH CONDITIONS, MAKE A TABLE,DELETE,APPNED...
MS-ACCESS:CREATE TAB(QUERY-SELECT WITH CONDITIONS, MAKE A TABLE,DELETE,APPNED...MS-ACCESS:CREATE TAB(QUERY-SELECT WITH CONDITIONS, MAKE A TABLE,DELETE,APPNED...
MS-ACCESS:CREATE TAB(QUERY-SELECT WITH CONDITIONS, MAKE A TABLE,DELETE,APPNED...
 
Ms access 2010
Ms access 2010Ms access 2010
Ms access 2010
 
How to Create A Microsoft Access 2007 Database
How to Create A Microsoft Access 2007 DatabaseHow to Create A Microsoft Access 2007 Database
How to Create A Microsoft Access 2007 Database
 
The ABAP Query
The ABAP QueryThe ABAP Query
The ABAP Query
 
Basic introduction to ms access
Basic introduction to ms accessBasic introduction to ms access
Basic introduction to ms access
 
eParticipation in The Netherlands
eParticipation in The NetherlandseParticipation in The Netherlands
eParticipation in The Netherlands
 
Alles Van Tmm
Alles Van TmmAlles Van Tmm
Alles Van Tmm
 
KaDouce AutoBio
KaDouce AutoBioKaDouce AutoBio
KaDouce AutoBio
 
AVB201.1 Microsoft Access VBA Module 1
AVB201.1 Microsoft Access VBA Module 1AVB201.1 Microsoft Access VBA Module 1
AVB201.1 Microsoft Access VBA Module 1
 
George Washington Teacher’s Institute
George Washington Teacher’s InstituteGeorge Washington Teacher’s Institute
George Washington Teacher’s Institute
 
Ikregeer Overheid20
Ikregeer   Overheid20Ikregeer   Overheid20
Ikregeer Overheid20
 
ELS SILENCIS D'ORIENT
ELS SILENCIS D'ORIENT ELS SILENCIS D'ORIENT
ELS SILENCIS D'ORIENT
 
ArchEvolution In 1 Slide! By Copyright 2009 Andres Agostini (Andy) - Arlingto...
ArchEvolution In 1 Slide! By Copyright 2009 Andres Agostini (Andy) - Arlingto...ArchEvolution In 1 Slide! By Copyright 2009 Andres Agostini (Andy) - Arlingto...
ArchEvolution In 1 Slide! By Copyright 2009 Andres Agostini (Andy) - Arlingto...
 
Course Catalog
Course CatalogCourse Catalog
Course Catalog
 
Creating a Photo Story With Soundslides
Creating a Photo Story With SoundslidesCreating a Photo Story With Soundslides
Creating a Photo Story With Soundslides
 

Semelhante a AIN102.2 Microsoft Access Queries

Title of the ProjectbyStudent NameThis is an Engineeri.docx
Title of the ProjectbyStudent NameThis is an Engineeri.docxTitle of the ProjectbyStudent NameThis is an Engineeri.docx
Title of the ProjectbyStudent NameThis is an Engineeri.docx
herthalearmont
 

Semelhante a AIN102.2 Microsoft Access Queries (20)

AIN102 Microsoft Access Queries
AIN102 Microsoft Access QueriesAIN102 Microsoft Access Queries
AIN102 Microsoft Access Queries
 
AIN102D Access date functions sample queries
AIN102D Access date functions sample queriesAIN102D Access date functions sample queries
AIN102D Access date functions sample queries
 
SQL212.3 Introduction to SQL using Oracle Module 3
SQL212.3 Introduction to SQL using Oracle Module 3SQL212.3 Introduction to SQL using Oracle Module 3
SQL212.3 Introduction to SQL using Oracle Module 3
 
SQL202.2 Accelerated Introduction to SQL Using SQL Server Module 2
SQL202.2 Accelerated Introduction to SQL Using SQL Server Module 2SQL202.2 Accelerated Introduction to SQL Using SQL Server Module 2
SQL202.2 Accelerated Introduction to SQL Using SQL Server Module 2
 
IBM Informix dynamic server 11 10 Cheetah Sql Features
IBM Informix dynamic server 11 10 Cheetah Sql FeaturesIBM Informix dynamic server 11 10 Cheetah Sql Features
IBM Informix dynamic server 11 10 Cheetah Sql Features
 
Developer's Approach to Code Management
Developer's Approach to Code ManagementDeveloper's Approach to Code Management
Developer's Approach to Code Management
 
SQL200A Microsoft Access SQL Design
SQL200A Microsoft Access SQL DesignSQL200A Microsoft Access SQL Design
SQL200A Microsoft Access SQL Design
 
Analysing Performance of Algorithmic SQL and PLSQL.pptx
Analysing Performance of Algorithmic SQL and PLSQL.pptxAnalysing Performance of Algorithmic SQL and PLSQL.pptx
Analysing Performance of Algorithmic SQL and PLSQL.pptx
 
AIN102S Access string function sample queries
AIN102S Access string function sample queriesAIN102S Access string function sample queries
AIN102S Access string function sample queries
 
Normalization.ppt
Normalization.pptNormalization.ppt
Normalization.ppt
 
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
 
BRACKET_PARAMETERS.ppt
BRACKET_PARAMETERS.pptBRACKET_PARAMETERS.ppt
BRACKET_PARAMETERS.ppt
 
Adv.+SQL+PPT+final.pptx
Adv.+SQL+PPT+final.pptxAdv.+SQL+PPT+final.pptx
Adv.+SQL+PPT+final.pptx
 
MySQL performance tuning
MySQL performance tuningMySQL performance tuning
MySQL performance tuning
 
Pl sql using_xml
Pl sql using_xmlPl sql using_xml
Pl sql using_xml
 
Title of the ProjectbyStudent NameThis is an Engineeri.docx
Title of the ProjectbyStudent NameThis is an Engineeri.docxTitle of the ProjectbyStudent NameThis is an Engineeri.docx
Title of the ProjectbyStudent NameThis is an Engineeri.docx
 
AVB202 Intermediate Microsoft Access VBA
AVB202 Intermediate Microsoft Access VBAAVB202 Intermediate Microsoft Access VBA
AVB202 Intermediate Microsoft Access VBA
 
Chapter 7 Working with two result sets
Chapter 7 Working with two result setsChapter 7 Working with two result sets
Chapter 7 Working with two result sets
 
Sql Tuning
Sql TuningSql Tuning
Sql Tuning
 
MySQL for business developer - Titouan BENOIT
MySQL for business developer - Titouan BENOITMySQL for business developer - Titouan BENOIT
MySQL for business developer - Titouan BENOIT
 

Mais de Dan D'Urso

Course Catalog
Course CatalogCourse Catalog
Course Catalog
Dan D'Urso
 

Mais de Dan D'Urso (20)

SQL201S Accelerated Introduction to MySQL Queries
SQL201S Accelerated Introduction to MySQL QueriesSQL201S Accelerated Introduction to MySQL Queries
SQL201S Accelerated Introduction to MySQL Queries
 
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
SQL302 Intermediate SQLSQL302 Intermediate SQL
SQL302 Intermediate SQL
 
AIN106 Access Reporting and Analysis
AIN106 Access Reporting and AnalysisAIN106 Access Reporting and Analysis
AIN106 Access Reporting and Analysis
 
SQL302 Intermediate SQL Workshop 3
SQL302 Intermediate SQL Workshop 3SQL302 Intermediate SQL Workshop 3
SQL302 Intermediate SQL Workshop 3
 
SQL302 Intermediate SQL Workshop 2
SQL302 Intermediate SQL Workshop 2SQL302 Intermediate SQL Workshop 2
SQL302 Intermediate SQL Workshop 2
 
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.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
 

Último

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Último (20)

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 Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
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?
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
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
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
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)
 

AIN102.2 Microsoft Access Queries