Lesson 1
Basic SQL
The Structured Query Language, or SQL, is one of the most powerful tools available today when it comes to working with data sets and getting the information you need from databases. This course will introduce you to SQL and explain how you can quickly start using it to query databases and how you can start to fine-tune your use of SQL.
Along with Codd's definition of the relational model, he proposed a language called DSL/Alpha for manipulating the data in relational tables. Shortly after Codd's paper was released, IBM commissioned a group to build a prototype based on the ideas of Codd. This group created a simplified version of DSL/Alpha that they called SQUARE and refinements to SQUARE led to a language called SEQUEL, which was, finally, renamed SQL. SQL is now entering middle age and it has undergone a great deal of change along the way. In the mid-1980s, the American National Standards Institute (ANSI) began working on the first standard for the SQL language, which was published in 1986. Subsequent refinements led to new releases of the SQL standard in 1989, 1992, 1999, 2003, and 2006. Along with refinements to the core language, new features have been added to the SQL language to incorporate object-oriented functionality. The latest standard, SQL:2011, focuses on the integration of SQL and XML and defines a language called XQuery which is used to query data in XML documents.
- SQL 2008 Legalizes ORDER BY outside cursor definitions. Adds INSTEAD OF triggers. Adds the TRUNCATE statement
- SQL 2011 is the seventh revision of the ISO (1987) and ANSI (1986) standard for the SQL database query language. It was formally adopted in December 2011.
SQL goes hand in hand with the
relational model because the result of an SQL query is a table or result set. Thus, a new permanent table can be created in a relational database simply by storing the result set of a query. Similarly, a query can use both permanent tables and the result sets from other queries as inputs. When referring to the language, it is equally acceptable to say the letters individually (i.e., S. Q. L.) or to use the word sequel.
SQL Queries
History of SQL
The SQL programming language was first developed in the 1970s by IBM researchers Raymond Boyce and Donald Chamberlin. The programming language, known then as SEQUEL, was created following the publishing of Edgar Todd's paper, "A Relational Model of Data for Large Shared Data Banks," in 1970. SQL is used to communicate with the table of a database using CRUD operations. According to ANSI (American National Standards Institute), it is the standard language for relational database management systems. SQL statements are used to perform tasks such as update data on a database, or retrieve data from a database.
Course Goals
In this course, we will cover:
- What SQL is used for
- How to get the information you need from the database
- Why SQL is used in the manner that it is
- How to get started working with the databases that you need to work with
Browse the introductory pages to learn more about the site.
A database is a repository for data. In other words, you can store lots of information in a database.
A relational database is a special type of database using structures called tables. Tables are linked together using what are called relationships. You can build tables with relationships between those tables, not only to organize your data, but also to allow later retrieval of information from the database.