Close
Contact Us info@learnquest.com

??WelcomeName??
??WelcomeName??
« Important Announcement » Contact Us 877-206-0106 | USA Flag
Close
Close
Close
photo

Thank you for your interest in LearnQuest.

Your request is being processed and LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

photo

Thank you for your interest in Private Training.

We look forward to helping you develop the perfect training solution to help you meet your company's goals.

For immediate assistance, speak with one of our representatives using the chat module below. Otherwise, LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

Close
photo

Thank you for your interest in LearnQuest!

Now, you will be able to stay up-to-date on our latest course offerings, promotions, and training discounts. Watch your inbox for upcoming special offers.

title

Date: xxx

Location: xxx

Time: xxx

Price: xxx

Please take a moment to fill out this form. We will get back to you as soon as possible.

All fields marked with an asterisk (*) are mandatory.

Introduction to Oracle Database and SQL

Price
2,100 USD
3
DBOR-970
Classroom Training, Online Training
Oracle

AWS Training Pass

Take advantage of flexible training options with the AWS Training Pass and get Authorized AWS Training for a full year.

Learn More

Prices reflect a 22.5% discount for IBM employees (wherever applicable).
Prices reflect a 24% discount for Kyndryl employees (wherever applicable).
Prices reflect the Accenture employee discount.
Prices shown are the special AWS Partner Prices.
Prices reflect the Capgemini employee discount.
Prices reflect the UPS employee discount.
Prices reflect the ??democompanyname?? employee discount.
GSA Private/Onsite Price: ??gsa-private-price??
For GSA pricing, please go to GSA Advantage.

Class Schedule

Delivery Formats

Sort results

Filter Classes

Guaranteed to Run

Modality

Location

Language

Date

    Sorry, there are no public classes currently scheduled in your country.

    Please complete this form, and a Training Advisor will be in touch with you shortly to address your training needs.

View Global Schedule

Course Description

Overview

This course is designed for developers, analysts, and others who need to use Oracle’s SQL language to query or modify data, and to create basic objects in Oracle databases. It is an introductory course, so no prior SQL knowledge is required.

Students receive a comprehensive introduction to Oracle’s implementation of the SQL language. Students use common query tools such as SQL Developer, TOAD, SQL*Plus, etc. to do course workshops to reinforce all concepts. Primary emphasis is placed on generating efficient queries to extract data from the database. Hands-on workshops constitute approximately 50% of the class.
 

Objectives


 

Audience

This course is designed for developers, analysts, and others who need to use Oracle’s SQL language to query or modify data, and to create basic objects in Oracle databases.
 

Prerequisites

    No prior SQL knowledge is required.
     

Topics

Relational Database Design Using Oracle
  • Position the Server Technologies
  • Understand Relational Structures
  • Summarize the SQL Language
  • Use the Client Tools
  • Review the schemas to be used for workshops
Data Retrieval Using the SQL SELECT Statement
  • Learn SQL concepts and syntax
  • Learn and code basic SQL statements using:
  • DUAL table
  • Statement terminators and case sensitivity
  • DISTINCT
  • Concatenation and Literals
  • Column Aliases
  • Arithmetic and Date operators
  • All basic SQL Datatypes
  • NULLs
  • Workshop
Restricting and Sorting Data
  • Use WHERE clause to limit the Rows Retrieved by a Query
  • Numeric conditions
  • Character conditions
  • Implicit data conversion
  • Date conditions
  • Comparison operators
  • BETWEEN, IN, LIKE, IS NULL
  • AND, OR, NOT
  • Precedence rules
  • Sort the Rows Retrieved by a Query
  • ORDER BY
  • ASC and DESC
  • NULLS FIRST and NULLS LAST
  • Positional ordering
  • Ampersand Substitution
  • &, &&, DEFINE, VERIFY, SET
  • Workshop
Single-Row Functions
  • Describe Various Types of Functions Available in SQL
  • Use Character, Number, and Date Functions in SELECT Statements
  • Describe Various Types of Conversion Functions Available in SQL
  • Single-Row functions
  • Multi-row functions
  • Character functions
  • Case conversion such as LOWER, UPPER, INICAP
  • Character manipulation such as LENGTH, LPAD, RPAD, TRIM, INSTR, SUBSTR, REPLACE
  • Numeric functions such as ROUND, TRUNC, and MOD
  • Date functions
  • SYSDATE
  • MONTHS_BETWEEN, ADD_DAYS, LAST_DAY, ROUND
  • Workshop
Using Conversion Functions and Conditional Expressions
  • Explicit vs Implicit conversion
  • Implicit character to date conversions
  • Explicit date conversions
  • Nested functions
  • General functions for dealing with NULL values
  • NVL, NVL2, NULLIF, COALESCE
  • Conditional functions
  • DECODE, CASE Expression
  • Workshop
Reporting Aggregated Data Using the Group Functions
  • Group Functions concepts
  • Primary group functions
  • COUNT, AVG, SUM, MIN, MAX
  • Additional group functions
  • VARIANCE, STDDEV, CORR, RANK, etc.
  • Group Data Using the GROUP BY Clause
  • Golden Group By Rule
  • Include or Exclude Grouped Rows Using the HAVING Clause
  • Workshop
Displaying Data from Multiple Table
  • Join concepts
  • Write SELECT Statements to Access Data from More Than One Table
  • Join Syntax
  • ANSI SQL syntax: NATURAL JOIN, JOIN USING, JOIN ON
  • Oracle specific syntax
  • INNER vs OUTER vs CARTESION joins
  • Join Rules
  • Equijoins vs Non-equijoins
  • Join a Table to itself Using a Self-join
  • Workshop
Using Subqueries to Solve Problems
  • Describe the Types of Problems That the Subqueries Can Solve
  • Simple vs Correlated subqueries
  • Single-row vs multi-row subqueries
  • Comparison operators in single-row subqueries
  • Comparison operators in multi-row subqueries
  • EXISTS and NOT EXISTS in subqueries
  • ANY and ALL in subqueries
  • Workshop
Using the Set Operators
  • Describe the Set Operators
  • Use Set Operators to Combine Multiple Queries into a Single Query
  • UNION, UNION ALL, INTERSECT, and MINUS
  • Set operator rules
  • Sorting results of set operators
  • Workshop
Manipulating Data
  • Data Manipulation Language (DML) Statement use and syntax
  • INSERT
  • UPDATE
  • DELETE
  • MERGE
  • TRUNCATE
  • COMMIT and ROLLBACK
  • Statement Failure – all or nothing
  • ACID test: Atomicity, Consistency, Isolation, Durability
  • Additional transaction control
  • SAVEPOINT
  • SELECT FOR UPDATE
  • Row Locking: who sees what?
  • Workshop
Using DDL Statements to Create and Manage Tables
  • Categorize the Main Database Objects
  • Tables, Views, Synonyms, Indexes, Sequences
  • Schema Object Naming Rules
  • Object Namespaces
  • Table and column types
  • CREATE TABLE syntax
  • Modifying tables
  • Table Constraints
  • Workshop
Creating Other Schema Objects
  • Categorize the Main Database Objects
  • Views
  • Why use Views?
  • Simple vs Complex Views
  • View DML
  • CREATE VIEW syntax
  • ALTER and DROP VIEW syntax
  • Synonyms
  • Purpose
  • Private vs Public Synonyms
  • Creating, altering, and dropping synonyms
  • Sequences
  • Purpose
  • Syntax
  • CURRVAL and NEXTVAL
  • Indexes
  • Purpose
  • Types of indexes
  • B*Tree vs Bitmap Indexes
  • Column Cardinality
  • Syntax
  • Uniqueness
  • Explicit vs Implicit creation
  • ALTER and DROP index
  • Workshop
2023 Top 20 Training Industry Company - IT Training

Need Help?

Call us at 877-206-0106 or e-mail us at info@learnquest.com

Personalized Solutions

Need a personalized solution for your Training? Contact us, and one of our training advisors will help you find the best solution.

Contact Us

Need Help?

Do you have a question about the courses, instruction, or materials covered? Do you need help finding which course is best for you? We are here to help!

Talk to us

20% Off All AI Training Courses

Achieve more with AI-powered tools and strategies.

PROMO CODE: AI20
VALID THROUGH APRIL 30, 2024

20% Off All AI Training Courses

Self-Paced Training Info

Learn at your own pace with anytime, anywhere training

  • Same in-demand topics as instructor-led public and private classes.
  • Standalone learning or supplemental reinforcement.
  • e-Learning content varies by course and technology.
  • View the Self-Paced version of this outline and what is included in the SPVC course.
  • Learn more about e-Learning

Course Added To Shopping Cart

bla

bla

bla

bla

bla

bla

Self-Paced Training Terms & Conditions

??spvc-wbt-warning??
??group-training-form-area??
??how-can-we-help-you-area??
??personalized-form-area??
??request-quote-area??

Sorry, there are no classes that meet your criteria.

Please contact us to schedule a class.
Close

self-paced
STOP! Before You Leave

Save 0% on this course!

Take advantage of our online-only offer & save 0% on any course !

Promo Code skip0 will be applied to your registration

Close
Nothing yet
here's the message from the cart

To view the cart, you can click "View Cart" on the right side of the heading on each page
Add to cart clicker.

Purchase Information

??elearning-coursenumber?? ??coursename??
View Cart

Need more Information?

Speak with our training specialists to continue your learning journey.

 

Delivery Formats

Close

By submitting this form, I agree to LearnQuest's Terms and Conditions

heres the new schedule
This website uses third-party profiling cookies to provide services in line with the preferences you reveal while browsing the Website. By continuing to browse this Website, you consent to the use of these cookies. If you wish to object such processing, please read the instructions described in our Privacy Policy.
Your use of this LearnQuest site affirms your consent to our use of session and persistent cookies to track how you use our website.