0% found this document useful (0 votes)
98 views1 page

Summary

SQL is a language used to communicate with database management systems to organize, manage, and retrieve data stored in a database. It allows users to define data structures, relationships, and use statements like SELECT, INSERT, DELETE, and UPDATE to interact with data. Despite variations, SQL has become the standard database language across different systems for storing and accessing data.

Uploaded by

Viktoria Voor
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
98 views1 page

Summary

SQL is a language used to communicate with database management systems to organize, manage, and retrieve data stored in a database. It allows users to define data structures, relationships, and use statements like SELECT, INSERT, DELETE, and UPDATE to interact with data. Despite variations, SQL has become the standard database language across different systems for storing and accessing data.

Uploaded by

Viktoria Voor
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Summary: SQL SQL is a tool for organizing, managing, and retrieving data stored by a computer database.

SQL is not itself a database management system (DBMS). It is an integral part of a database management system - a language and a tool for communicating with the DBMS. The name "SQL" is an abbreviation for Structured Query Language. It was originally developed by IBM researchers. Despite of the official ANSI/ISO SQL standards and several other SQL standards, there are many small variations among commercial SQL dialects. SQL lets a user define the structure and organization of the stored data and relationships among the stored data items. SQL is used to retrieve data from the database, using the SELECT statement, update the database by adding new data with the INSERT statement, deleting data with DELETE statement, and modifying existing data with the UPDATE statement. SQL has become the standard database management language across a broad range of computer systems and application areas, including mainframes, workstations, personal computers, client/server systems, data warehousing, and the Internet.

You might also like