Introduction To Oracle Sql

  • June 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Introduction To Oracle Sql as PDF for free.

More details

  • Words: 215
  • Pages: 1
Introduction to Oracle SQL •

Relational database tables are built on a strong mathematical foundation called relational theory. In this theory, relations or tables are operated on by a formal language called the relational algebra.



SQL is a commercial interpretation of the relational algebraic constructs. Three concepts from relational theory encompass the capability of the SELECT statement: projection, selection and joining. o

Projection – refers to the restriction of attributes (columns) selected from a relation or table.

o

Selection – refers to the restriction of the tuples or rows selected from a relation (table).

o

Joining – refers to the interaction of tables with each other in a query.



The Oracle Server stores information about all tables in a special set of relational tables called the data dictionary.



The data dictionary stores definitions of database objects in a centralized, ordered, and structured format. The definition of a table includes information like table name, table owner, details about the columns that comprise it, and its physical storage size on disk. This information is also referred to as metadata.



The structural metadata of a table may be obtained by querying the database for the list of columns that comprise it using the DESCRIBE command. The general syntax of the command is: DESCRIBE <SCHEMA>.tablename

Related Documents

Intro To Oracle & Sql
November 2019 19
Introduction To Sql
November 2019 17
Introduction To Oracle
November 2019 9
Oracle Sql
November 2019 23