Welcome to Read: 08
SQL
In this Read: 08, I will talk about this topic:
- SQL.
SQL
What is SQL?
SQL, or Structured Query Language, is a language designed to allow both technical and non-technical users query, manipulate, and transform data from a relational database. And due to its simplicity, SQL databases provide safe and scalable storage for millions of websites and mobile applications.
-
Relational databases
- Before learning the SQL syntax, it’s important to have a model for what a relational database actually is. A relational database represents a collection of related (two-dimensional) tables. Each of the tables are similar to an Excel spreadsheet, with a fixed number of named columns (the attributes or properties of the table) and any number of rows of data..
- Before learning the SQL syntax, it’s important to have a model for what a relational database actually is. A relational database represents a collection of related (two-dimensional) tables. Each of the tables are similar to an Excel spreadsheet, with a fixed number of named columns (the attributes or properties of the table) and any number of rows of data..
-
What Can SQL do?
- SQL can execute queries against a database
- SQL can retrieve data from a database
- SQL can insert records in a database
- SQL can update records in a database
- SQL can delete records from a database
- SQL can create new databases
- SQL can retrieve data from a database
- SQL can create new tables in a database
- SQL can create stored procedures in a database
- SQL can create views in a database
- SQL can set permissions on tables, procedures, and views
- SQL can execute queries against a database
-
How to Use SQL؟
- SQL Code Example:
SELECT * FROM Members WHERE Age > 30
SQL syntaxes used in different databases are almost similar, though few RDBMS use a few different commands and even proprietary SQL syntaxes
- SQL Code Example:
-
Types of SQL Statements
- Data Definition Language (DDL)
- Data Manipulation Language (DML)
- Data Control Language (DCL)
- Transaction Control Language (TCL)
- Data Query Language (DQL)
- Data Definition Language (DDL)
-
List of SQL Commands
- CREATE - defines the database structure schema
- INSERT - inserts data into the row of a table
- UPDATE - updates data in a database
- DELETE - removes one or more rows from a table
- SELECT - selects the attribute based on the condition described by the WHERE clause
- DROP - removes tables and databases
- CREATE - defines the database structure schema
For further infromation please click here.