• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

What is SQL used for?

MojoJojo

Senior member
I would like to know some uses for SQL.
I know it's for databases but thats too vague.
What do you use it for specifically ?
Thanks for your time.
 
I grabbed this definition from here.


<< This page is a introductory tutorial of the Structured Query Language (also known as SQL) and is a pioneering effort on the World Wide Web, as this is the first comprehensive SQL tutorial available on the Internet. SQL allows users to access data in relational database management systems, such as Oracle, Sybase, Informix, Microsoft SQL Server, Access, and others, by allowing users to describe the data the user wishes to see. SQL also allows users to define the data in a database, and manipulate that data. This page will describe how to use SQL, and give examples. The SQL used in this document is &quot;ANSI&quot;, or standard SQL, and no SQL features of specific database management systems will be discussed until the &quot;Nonstandard SQL&quot; section. It is recommended that you print this page, so that you can easily refer back to previous examples >>


It's basically a type of scripting language that performs operations on a relational database. You use it to extract the information you want, or to update the information you want.
 
Back
Top