Tuesday, February 19, 2013

What is SQL?



     The history of SQL begins in an IBM laboratory in San Jose, California, where SQL was developed in the late 1970s. The language itself is often referred to as "sequel." It was originally developed for IBM's DB2 product.
     SQL stands for Structured Query Language. It is the standart language used for accessing and manipulating data from relational databases. By using SQL a programmer or database administrator can do the followings:
  •          Modify a database's structure
  •          Change system security settings
  •          Add user permissions on databases or tables
  •          Retrieve data from a database
  •          Update the contents of a database
  •          Delete Records from database and Insert records to database
  •          Create new tables, databases, views, stored procedures
  •          Set permissions

    The most commonly used statement in SQL is the SELECT statement (next topic will be about SELECT statement), which allows to retrieve records from one or more tables in database.

References:
Oracle Database SQL Language Reference 11g Release 2 (11.2) E26088-03

Friday, February 15, 2013

Preface



The aim of this blog to teach Oracle SQL and PL/SQL step by step from simple to advanced. Each week we will introduce one topic and discuss related issues.  Also questions by users will be taken in attention and will be answered as soon as possible. Our goal is to teach every single element of SQL and PL/SQL to users in deep and make life easier for Oracle users. Hope you will enjoy ..