SlideShare uma empresa Scribd logo
1 de 64
SQL/212 SQL Programming Workshop 3 – Modifying Data, Managing the Database Bookstore SQL212 Module 3
SQL212 Contact Information Bookstore SQL212 Module 3 P.O. Box 6142 Laguna Niguel, CA 92607 949-489-1472 http://www.d2associates.com [email_address]   Copyright 2001-2009. All rights reserved.
SQL212 Module 3 ,[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
SQL/212 SQL Programming Part 1 – Modifying Data Bookstore SQL212 Module 3
Bookstore SQL212 Module 3 Relational Database with constraints (from text)
Data Modification Statements ,[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Data Modification Statements ,[object Object],[object Object],Bookstore SQL212 Module 3
Insert ,[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Single Row Insert Bookstore SQL212 Module 3 Basic Syntax: Insert [into] <table-name> Values (<value-list>)
Single Row Insert Bookstore SQL212 Module 3 Basic Example: insert into  sources(source_numb, source_name, source_street) values (22,'Specialty Books', 'Canal Street')
Insert Statement Bookstore SQL212 Module 3
Sources table after Insert Bookstore SQL212 Module 3
Multi-row Insert Bookstore SQL212 Module 3 Basic Syntax: Insert [into] <table-name> Select <select-statement> We will do this after creating a new table later in this module
Update ,[object Object],Bookstore SQL212 Module 3 Basic Syntax: Update <table-name> Set <field1> = new value, <field2> = new value,… Where <selection-criteria>
Update ,[object Object],Bookstore SQL212 Module 3 Example: Update books Set retail_price = retail_price *1.10 Where source_numb = 1
Ingram Book Prices before Update Bookstore SQL212 Module 3
Ingram Book Prices after Update Bookstore SQL212 Module 3
Delete ,[object Object],Bookstore SQL212 Module 3 Basic Syntax: Delete from <table-name> Where <selection-criteria>
Delete Bookstore SQL212 Module 3 Example: delete the source we added Delete from sources Where source_numb = 22
Delete Bookstore SQL212 Module 3
Sources table after Delete Bookstore SQL212 Module 3
Delete and Referential Integrity ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
SQL/212 SQL Programming Part 2– Managing Database Structures Bookstore SQL212 Module 3
Schemas ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Tables ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Creating Tables ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Data Types ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Create Table Bookstore SQL212 Module 3 Basic syntax: Create table <table-name> <column1> <datatype> <constraints> ,.. <column1> <datatype> <constraints> … <table constraints> Note: often preceded by a drop
Temporary Tables Bookstore SQL212 Module 3 Basic syntax: Create [global] temporary table <table-name> <rest of statement as for normal create> Note: SQL Server uses a different syntax. Just put a #in front of the table name as in #mytable. Access doesn’t have true temporary tables.
Column Constraints ,[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Table Constraints ,[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
But first – the Drop Statement ,[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Create Table Bookstore SQL212 Module 3 Example 1: Create  a summary table Create  table summary( isbn varchar2(20)  primary key , How_many int  check  (how_many >= 0), Constraint  isbn_fk Foreign key  (isbn)  references  books(isbn) )
Create Summary Table Bookstore SQL212 Module 3
Constraints on Summary Table Bookstore SQL212 Module 3
Multi-row Insert Bookstore SQL212 Module 3 Basic Syntax: Insert [into] <table-name> Select <select-statement>
Multi-row Insert Bookstore SQL212 Module 3 Basic Example:  (store # times each book ordered) Insert into summary(isbn, how_many) Select isbn, count(*) From orderlines Group by isbn;
Multi-row Insert Bookstore SQL212 Module 3
Bookstore SQL212 Module 3 After multi-row insert in MS Access
SQL/212 SQL Programming Part 3 – Creating Views and Indexes, Modifying Structures Bookstore SQL212 Module 3
Views ,[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Views Bookstore SQL212 Module 3 Basic syntax: Create view <view-name> (<column-list>) As <select statement>
Creating a View Bookstore SQL212 Module 3 ,[object Object]
Using Views ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Using a View Bookstore SQL212 Module 3
Indexes ,[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Indexes Bookstore SQL212 Module 3 Basic syntax: Create [unique] index <index-name>  On <table-name> (field-name> [desc]) Note: can place index on a composite key;  ex: state and city
Indexes Bookstore SQL212 Module 3 Basic example: create index state_inx on customers(customer_state) ,[object Object]
Bookstore SQL212 Module 3 After indexing on customer_state
State_inx in Oracle Bookstore SQL212 Module 3
Modifying a Table Design ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Modifying a Table Design Bookstore SQL212 Module 3 Basic syntax: Alter <table-name> Add <field-name>, Add <table-constraint>, Modify <field-name> Etc.
Modify a Table Design Bookstore SQL212 Module 3 Example: add a phone number field alter table publishers add phone char(12);
Bookstore SQL212 Module 3 After alter publishers table
SQL/212 SQL Programming Part 4 – Security Bookstore SQL212 Module 3
Security ,[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Security ,[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
SQL Security Statements ,[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Grant Bookstore SQL212 Module 3 Syntax: Grant <access-right> [with grant option] On <object> to <user>   Note: by default only tables owners and admins can access a table. Others must be granted the relevant rights.
Access Rights ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Bookstore SQL212 Module 3
Grant Bookstore SQL212 Module 3 Example: Give user ddurso the permission to update the employees table. Grant update On employees to ddurso
Revoke ,[object Object],[object Object],Bookstore SQL212 Module 3 [end module]
Notes Bookstore SQL212 Module 3
Notes Bookstore SQL212 Module 3

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Assignment#02
Assignment#02Assignment#02
Assignment#02
 
DML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with Examples
DML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with ExamplesDML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with Examples
DML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with Examples
 
Practical index dms 22319
Practical index dms 22319Practical index dms 22319
Practical index dms 22319
 
Les10 Creating And Managing Tables
Les10 Creating And Managing TablesLes10 Creating And Managing Tables
Les10 Creating And Managing Tables
 
Assignment#07
Assignment#07Assignment#07
Assignment#07
 
Dms 22319 micro project
Dms 22319 micro projectDms 22319 micro project
Dms 22319 micro project
 
Sql commands
Sql commandsSql commands
Sql commands
 
Oracle: DDL
Oracle: DDLOracle: DDL
Oracle: DDL
 
Sql ch 13 - sql-views
Sql ch 13 - sql-viewsSql ch 13 - sql-views
Sql ch 13 - sql-views
 
Sql smart reference_by_prasad
Sql smart reference_by_prasadSql smart reference_by_prasad
Sql smart reference_by_prasad
 
Assignment#06
Assignment#06Assignment#06
Assignment#06
 
Commands of DML in SQL
Commands of DML in SQLCommands of DML in SQL
Commands of DML in SQL
 
SQL Tutorial for BCA-2
SQL Tutorial for BCA-2SQL Tutorial for BCA-2
SQL Tutorial for BCA-2
 
Access tips access and sql part 1 setting the sql scene
Access tips  access and sql part 1  setting the sql sceneAccess tips  access and sql part 1  setting the sql scene
Access tips access and sql part 1 setting the sql scene
 
Drupal CMS: generating reports with the Forena module.
Drupal CMS: generating reports with the Forena module.Drupal CMS: generating reports with the Forena module.
Drupal CMS: generating reports with the Forena module.
 
Assignment#05
Assignment#05Assignment#05
Assignment#05
 
SQL - DML and DDL Commands
SQL - DML and DDL CommandsSQL - DML and DDL Commands
SQL - DML and DDL Commands
 
Getting Started with MySQL II
Getting Started with MySQL IIGetting Started with MySQL II
Getting Started with MySQL II
 
Sq lite
Sq liteSq lite
Sq lite
 
Sql
SqlSql
Sql
 

Destaque

one woman satisfies 12 men
one woman satisfies 12 menone woman satisfies 12 men
one woman satisfies 12 men
fondas vakalis
 
081223-“明星制造”百脑汇高校才艺大赛
081223-“明星制造”百脑汇高校才艺大赛081223-“明星制造”百脑汇高校才艺大赛
081223-“明星制造”百脑汇高校才艺大赛
buynow
 
Social enter strategic planning
Social enter strategic planningSocial enter strategic planning
Social enter strategic planning
Tarek Fahim
 
Marketing Overview 1
Marketing Overview 1Marketing Overview 1
Marketing Overview 1
Alison Murray
 
From Neo to Trinity: The Matrix Reinvented
From Neo to Trinity: The Matrix ReinventedFrom Neo to Trinity: The Matrix Reinvented
From Neo to Trinity: The Matrix Reinvented
The Difference Engine
 
4005-713 ` XML Architecture, Tools & Technique ` Presentation
4005-713 ` XML Architecture, Tools & Technique ` Presentation4005-713 ` XML Architecture, Tools & Technique ` Presentation
4005-713 ` XML Architecture, Tools & Technique ` Presentation
litcigar
 
Buenas Fotos Mal Fondo
Buenas Fotos Mal FondoBuenas Fotos Mal Fondo
Buenas Fotos Mal Fondo
fondas vakalis
 

Destaque (20)

Dahle Communication Group
Dahle Communication GroupDahle Communication Group
Dahle Communication Group
 
one woman satisfies 12 men
one woman satisfies 12 menone woman satisfies 12 men
one woman satisfies 12 men
 
Nice Travel
Nice TravelNice Travel
Nice Travel
 
How to find new Music
How to find new MusicHow to find new Music
How to find new Music
 
How to Do Lean Planning (and what does that mean anyway)
How to Do Lean Planning (and what does that mean anyway)How to Do Lean Planning (and what does that mean anyway)
How to Do Lean Planning (and what does that mean anyway)
 
Rockets
RocketsRockets
Rockets
 
081223-“明星制造”百脑汇高校才艺大赛
081223-“明星制造”百脑汇高校才艺大赛081223-“明星制造”百脑汇高校才艺大赛
081223-“明星制造”百脑汇高校才艺大赛
 
Social enter strategic planning
Social enter strategic planningSocial enter strategic planning
Social enter strategic planning
 
Lips & Mouth
Lips & MouthLips & Mouth
Lips & Mouth
 
Marketing Overview 1
Marketing Overview 1Marketing Overview 1
Marketing Overview 1
 
5 points on twitter with frank brunke
5 points on twitter with frank brunke5 points on twitter with frank brunke
5 points on twitter with frank brunke
 
From Neo to Trinity: The Matrix Reinvented
From Neo to Trinity: The Matrix ReinventedFrom Neo to Trinity: The Matrix Reinvented
From Neo to Trinity: The Matrix Reinvented
 
4005-713 ` XML Architecture, Tools & Technique ` Presentation
4005-713 ` XML Architecture, Tools & Technique ` Presentation4005-713 ` XML Architecture, Tools & Technique ` Presentation
4005-713 ` XML Architecture, Tools & Technique ` Presentation
 
Hurricanes &amp; Tornados
Hurricanes &amp; TornadosHurricanes &amp; Tornados
Hurricanes &amp; Tornados
 
SQL206 SQL Median
SQL206 SQL MedianSQL206 SQL Median
SQL206 SQL Median
 
CI
CICI
CI
 
Being Caught Stealing (Con La Mano En El Pastel)
Being Caught Stealing (Con La Mano En El Pastel)Being Caught Stealing (Con La Mano En El Pastel)
Being Caught Stealing (Con La Mano En El Pastel)
 
Buenas Fotos Mal Fondo
Buenas Fotos Mal FondoBuenas Fotos Mal Fondo
Buenas Fotos Mal Fondo
 
ifilms Company Profile
ifilms Company Profileifilms Company Profile
ifilms Company Profile
 
Allemand
AllemandAllemand
Allemand
 

Semelhante a SQL212.3 Introduction to SQL using Oracle Module 3

Sqlite3 command reference
Sqlite3 command referenceSqlite3 command reference
Sqlite3 command reference
Raghu nath
 
Introduction4 SQLite
Introduction4 SQLiteIntroduction4 SQLite
Introduction4 SQLite
Stanley Huang
 
11thingsabout11g 12659705398222 Phpapp01
11thingsabout11g 12659705398222 Phpapp0111thingsabout11g 12659705398222 Phpapp01
11thingsabout11g 12659705398222 Phpapp01
Karam Abuataya
 

Semelhante a SQL212.3 Introduction to SQL using Oracle Module 3 (20)

SQL200.3 Module 3
SQL200.3 Module 3SQL200.3 Module 3
SQL200.3 Module 3
 
SQL302 Intermediate SQL Workshop 3
SQL302 Intermediate SQL Workshop 3SQL302 Intermediate SQL Workshop 3
SQL302 Intermediate SQL Workshop 3
 
Sqlite3 command reference
Sqlite3 command referenceSqlite3 command reference
Sqlite3 command reference
 
Introduction to Oracle Database.pptx
Introduction to Oracle Database.pptxIntroduction to Oracle Database.pptx
Introduction to Oracle Database.pptx
 
Less04 Instance
Less04 InstanceLess04 Instance
Less04 Instance
 
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
 
Introduction4 SQLite
Introduction4 SQLiteIntroduction4 SQLite
Introduction4 SQLite
 
MS SQLSERVER:Creating A Database
MS SQLSERVER:Creating A DatabaseMS SQLSERVER:Creating A Database
MS SQLSERVER:Creating A Database
 
MS Sql Server: Creating A Database
MS Sql Server: Creating A DatabaseMS Sql Server: Creating A Database
MS Sql Server: Creating A Database
 
MS SQL SERVER: Creating A Database
MS SQL SERVER: Creating A DatabaseMS SQL SERVER: Creating A Database
MS SQL SERVER: Creating A Database
 
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
 
Ground Breakers Romania: Explain the explain_plan
Ground Breakers Romania: Explain the explain_planGround Breakers Romania: Explain the explain_plan
Ground Breakers Romania: Explain the explain_plan
 
Sql views, stored procedure, functions
Sql views, stored procedure, functionsSql views, stored procedure, functions
Sql views, stored procedure, functions
 
DBA Commands and Concepts That Every Developer Should Know - Part 2
DBA Commands and Concepts That Every Developer Should Know - Part 2DBA Commands and Concepts That Every Developer Should Know - Part 2
DBA Commands and Concepts That Every Developer Should Know - Part 2
 
DBA Commands and Concepts That Every Developer Should Know - Part 2
DBA Commands and Concepts That Every Developer Should Know - Part 2DBA Commands and Concepts That Every Developer Should Know - Part 2
DBA Commands and Concepts That Every Developer Should Know - Part 2
 
11thingsabout11g 12659705398222 Phpapp01
11thingsabout11g 12659705398222 Phpapp0111thingsabout11g 12659705398222 Phpapp01
11thingsabout11g 12659705398222 Phpapp01
 
11 Things About11g
11 Things About11g11 Things About11g
11 Things About11g
 
MySql slides (ppt)
MySql slides (ppt)MySql slides (ppt)
MySql slides (ppt)
 
SQL Server 2008 Performance Enhancements
SQL Server 2008 Performance EnhancementsSQL Server 2008 Performance Enhancements
SQL Server 2008 Performance Enhancements
 
PostgreSQL Database Slides
PostgreSQL Database SlidesPostgreSQL Database Slides
PostgreSQL Database Slides
 

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
 
SQL200A Microsoft Access SQL Design
SQL200A Microsoft Access SQL DesignSQL200A Microsoft Access SQL Design
SQL200A Microsoft Access SQL Design
 
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 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
 
SQL202 SQL Server SQL Manual
SQL202 SQL Server SQL ManualSQL202 SQL Server SQL Manual
SQL202 SQL Server SQL Manual
 
AIN102 Microsoft Access Queries
AIN102 Microsoft Access QueriesAIN102 Microsoft Access Queries
AIN102 Microsoft Access Queries
 

Último

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Último (20)

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech 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
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
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...
 
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
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
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
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
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
 
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)
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 

SQL212.3 Introduction to SQL using Oracle Module 3