What is SQL?

 What is SQL? Structured Query Language Database ISO Standard
Structured Query Language

     A standard interactive and programming language for getting information from and updating a database. Although SQL is both an ANSI and an ISO standard, many database products support SQL with proprietary extensions to the standard language.
     A specialized language for sending queries to databases. Most industrial-strength and many smaller database applications can be addressed using SQL. Each specific application will have its own slightly different version of SQL implementing features unique to that application, but all SQL-capable databases support a common subset of SQL.
     A example of an SQL statement is:

SELECT name, email FROM people_table WHERE contry='uk'

More on this subject
Beginner's Help
BUG Club Home

 What is SQL? Structured Query Language Database ISO Standard