Oracle Tutorial

  • Home
  • Start Here
  • Basics
  • Advanced
    • Oracle View
    • Oracle Index
    • Oracle Synonym
    • Oracle Sequence
    • Oracle Administration
  • PL/SQL
  • Functions
    • Aggregate Functions
    • Analytic Functions
    • Comparison Functions
    • Date Functions
    • String Functions
  • API
    • Python Oracle
Home / Advanced Oracle SQL

Advanced Oracle SQL

This section shows you advanced Oracle SQL techniques including views, indexes, synonyms, and sequences.

Section 1. Views

  • Creating a view –  create a new view.
  • Drop a view – drop a view from the database.
  • Updatable views – create updatable views.
  • Inline views – discuss inline views.
  • With Check Option– ensure consistency of views.

Section 2. Indexes

  • Creating a new index – create a new index.
  • Removing an index – drop an index.
  • Unique index – enforce the uniqueness of values one or more columns.
  • Function-based index – boost the performance of the queries that include expressions.
  • Bitmap index – leverage the bitmap index for a column that has a few distinct values.

Section 3. Synonyms

  • Create Synonym – create a new synonym for a table.
  • Drop Synonym – drop a synonym from the database.

Section 4. Sequences

  • Create Sequence– create a new sequence object.
  • Alter Sequence – modify the attributes and behaviors of a sequence.
  • Drop Sequence – drop a sequence.

Section 5. Oracle SQL Recipes

  • Find duplicate records – show you various ways to find duplicate records in a table.
  • Delete duplicate records – learn how to clean up data by removing duplicate rows in a table.
  • Compare two rows within the same table – describe the technique to compare two rows within the same table.
  • Was this tutorial helpful?
  • YesNo
Previous Oracle Basics
Next Oracle View

Getting Started

  • What Is Oracle Database
  • Install Oracle Database Server
  • Download Oracle Sample Database
  • Create Oracle Sample Database
  • Connect To Oracle Database Server

Oracle Data Manipulation

  • SELECT
  • Oracle DUAL Table
  • ORDER BY
  • SELECT DISTINCT
  • WHERE
  • Table & Column Aliases
  • AND
  • OR
  • FETCH
  • BETWEEN
  • IN
  • LIKE
  • IS NULL
  • Joins
  • INNER JOIN
  • LEFT JOIN
  • RIGHT JOIN
  • FULL OUTER JOIN
  • CROSS JOIN
  • Self Join
  • GROUP BY
  • HAVING
  • UNION
  • INTERSECT
  • MINUS
  • GROUPING SETS
  • CUBE
  • ROLLUP
  • PIVOT
  • UNPIVOT
  • INSERT
  • INSERT INTO SELECT
  • INSERT ALL
  • UPDATE
  • DELETE
  • MERGE
  • Subquery
  • Correlated Subquery
  • EXISTS
  • NOT EXISTS
  • ANY
  • ALL

Oracle Data Types

  • Oracle Data Types
  • NUMBER
  • FLOAT
  • BINARY_FLOAT
  • CHAR
  • NCHAR
  • VARCHAR2
  • NVARCHAR2
  • DATE
  • INTERVAL
  • TIMESTAMP
  • TIMESTAMP WITH TIME ZONE

Oracle Data Definition

  • CREATE TABLE
  • Identity Column
  • ALTER TABLE
  • ALTER TABLE ADD Column
  • ALTER TABLE MODIFY Column
  • Drop Columns
  • DROP TABLE
  • TRUNCATE TABLE
  • RENAME Table
  • Oracle Virtual Column

Oracle Constraints

  • PRIMARY KEY
  • FOREIGN KEY
  • UNIQUE
  • CHECK
  • NOT NULL

Oracle Views

  • CREATE VIEW
  • DROP VIEW
  • Updatable Views
  • Inline Views
  • WITH CHECK OPTION

About Oracle Tutorial

OracleTututorial.com website provides Developers and Database Administrators with the updated Oracle tutorials, scripts, and tips.

Search

Recent Tutorials

  • Oracle Implicit Statement Results
  • Calling PL/SQL Stored Functions in Python
  • Calling PL/SQL Procedures in Python
  • Managing Transaction in Python
  • Deleting Data From Oracle Database in Python

Site Links

  • Oracle Books
  • About
  • Contact
  • Privacy Policy
  • Terms of Use

Copyright © 2021 Oracle Tutorial. All Rights Reserved.