Main Menus
Make cash!
| ChrisSimpson Articles: 13 | |
| tgotch Articles: 6 | |
| placesinfrance Articles: 15 |
| www.placesinfrance.com M.. | |
| RichardMay Articles: 7 | |
| zwcad Articles: 9 | |
This article is licensed under a Creative Commons Attribution-No Derivative Works 3.0 Unported License, which means you may freely reprint it, in its entiretly, provided you include the author's resource box along with LIVE links (without "nofollow" tags).
View PDF | Print View | Html Version
by: Hispanic
Total views: 2
Word Count: 300
SQL or Structured Query Language is a type of programming language often specially made for database creation and management. It is made to perfectly manage and retrieve data from a RDBMS or relational database management system, a complex type of database that is widely used in storing huge amounts of data that are related to each other.
Unlike the C programming language and the Beginner's All-purpose Symbolic Instruction Code or BASIC programming language, SQL is a set-based language. It is also a declarative query language with additional extensions. The extensions make the standard SQL more functional.
SQL is further divided into different language elements. These include the statements that have an effect on both the data and the schema, the queries that have the ability to retrieve the data, the expressions that are designed to produce tables or scalar values, the predicates that are used to specify the conditions, the clauses that are the main components of both queries and statements, the whitespace that is used for formatting the SQL code, and the semicolon statement that is a part of the SQL grammar.
Among the elements, the queries are the most common operations in the SQL database. It is performed with a declarative keyword SELECT, which retrieves the data from a table. However, the SELECT query has no standard effect on the stored data. In some cases, the SELECT query has an effect in the database similar to Microsoft SQL Server's SELECT INTO.
Although the standard SQL is functional in many ways, a number of critics suggest that it lacks cross-platform portability between the vendors or database system. Most systems do not implement the entire SQL standard due to its complexity and size. Should you wish to learn more about this type of database, feel free to search the Internet for more available resources.
SQL is a set-based language. It is also a declarative query language with additional extensions. Tips for SQL Database