Building an SQL statement

SELECT SQL
The SELECT statement is used to show specific data from one or More Table. Here you will learn the structure of the SELECT statement and how to make a SELECT SQL statement from a given Question Statement
INSERT SQL
The INSERT INTO SQL statement is used to add or insert a new row to a table. Examples are given to demonstrate the use of INSERT SQL statement
UPDATE SQL
The UPDATE statement is used to change the value of one or more attributes/columns of a table. Be careful about the WHERE clause- if not used, all rows will be updated.
DELETE SQL
The DELETE statement is used to delete one or more rows from a table. Be careful about the WHERE clause- if not used, all rows will be deleted
INCORRECT SQL
Here you will see few examples of Incorrect SQL statements.