SQL (pronounced "ess-que-el") stands for Structured Query Language. SQL is used to communicate with a database. 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. Some common relational database management systems that use SQL are: Oracle, Sybase, Microsoft SQL Server, Access, Ingres, etc. Although most database systems use SQL, most of them also have their own additional proprietary extensions that are usually only used on their system.
SQL was developed by IBM in the 1970s for use in System R, and is a de facto standard, as well as an ISO and ANSI standard. SQL offers two main advantages over older read/write APIs: first, it introduced the concept of accessing many records with one single command; and second, it eliminates the need to specify how to reach a record using low-level address pointers.
Because SQL is the agreed upon language for queries in a relational database management system, it is essential for everyone working in data to have a thorough understanding of it. Queries are the ability to ask the data questions, and the method of searching and discovering data. Being able to interact with data using SQL is essential to the role of being a data steward.
SQL statements are used to perform tasks such as update data on a database, or retrieve data from a database. Some common relational database management systems that use SQL are: Oracle, Sybase, Microsoft SQL Server, Access, Ingres, etc.
Although most database systems use SQL, most of them also have their own additional proprietary extensions that are usually only used on their system.
However, the standard SQL commands such as "Select", "Insert", "Update", "Delete", "Create", and "Drop" can be used to accomplish almost everything that one needs to do with a database. This tutorial will provide you with the instruction on the basics of each of these commands as well as allow you to put them to practice using the SQL Interpreter.
SQL in a database can be used for:
Using SQL begins with a command, which is carried through a SQL engine and then interpreted. As per tutorialspoint.com, the components in this process are as follows: