computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
1.6 KiB
18 lines
1.6 KiB
# Introduction |
|
|
|
SQL, which stands for Structured Query Language, is a programming language that is used to communicate with and manage databases. SQL is a standard language for manipulating data held in relational database management systems (RDBMS), or for stream processing in a relational data stream management system (RDSMS). It was first developed in the 1970s by IBM. |
|
|
|
SQL consists of several components, each serving their own unique purpose in database communication: |
|
|
|
- **Queries:** This is the component that allows you to retrieve data from a database. The SELECT statement is most commonly used for this purpose. |
|
- **Data Definition Language (DDL):** It lets you to create, alter, or delete databases and their related objects like tables, views, etc. Commands include CREATE, ALTER, DROP, and TRUNCATE. |
|
- **Data Manipulation Language (DML):** It lets you manage data within database objects. These commands include SELECT, INSERT, UPDATE, and DELETE. |
|
- **Data Control Language (DCL):** It includes commands like GRANT and REVOKE, which primarily deal with rights, permissions and other control-level management tasks for the database system. |
|
|
|
SQL databases come in a number of forms, such as Oracle Database, Microsoft SQL Server, and MySQL. Despite their many differences, all SQL databases utilise the same language commands - SQL. |
|
|
|
Learn more about SQL from the following resources: |
|
|
|
- [@article@SQL Tutorial - Mode](https://mode.com/sql-tutorial/) |
|
- [@article@SQL Tutorial](https://www.sqltutorial.org/) |
|
- [@article@SQL Tutorial - W3Schools](https://www.w3schools.com/sql/default.asp)
|
|
|