SQL Syntax

SQL When you want to do some operations on the data in the database, then you must have to write the query in the predefined syntax of SQL.

The syntax of the structured query language is a unique set of rules and guidelines, which is not case-sensitive. Its Syntax is defined and maintained by the ISO and ANSI standards.
Following are some most important points about the SQL syntax which are to remember:


SQL Statement

SQL statements tell the database what operation you want to perform on the structured data and what information you would like to access from the database.
The statements of SQL are very simple and easy to use and understand. They are like plain English but with a particular syntax.


Simple Example of SQL statement:


SELECT "column_name" FROM "table_name";

Each SQL statement begins with any of the SQL keywords and ends with the semicolon (;). The semicolon is used in the SQL for separating the multiple Sql statements which are going to execute in the same call. In this SQL tutorial, we will use the semicolon (;) at the end of each SQL query or statement.

Let's discuss each statement in short in the further course.