SQL SELECT Statement
The SELECT a statement is used to select data from a database.
The data returned is stored in a result table, called the result set.
SELECT column1, column2, ...
FROM table_name;
SELECT CustomerName, City FROM Customers;
SQL SELECT DISTINCT :-
The SELECT DISTINCT a statement is used to return only distinct (different) values.
Inside a table, a column often contains many duplicate values; and sometimes you only want to list the different (distinct) values.
SELECT DISTINCT Syntax
SELECT DISTINCT column1, column2, ...
FROM table_name;SELECT DISTINCT Country FROM Customers;SELECT DISTINCT Examples
https://www.w3schools.com/sql/trysql.asp?filename=trysql_select_distinct
The SQL WHERE Clause
The WHERE clause is used to filter records.
It is used to extract only those records that fulfill a specified condition.
WHERE Syntax
SELECT column1, column2, ...
FROM table_name
WHERE condition;Operators in The WHERE Clause
The following operators can be used in the WHERE clause:
Operator Description Example = Equal > Greater than < Less than >= Greater than or equal <= Less than or equal <> Not equal. Note: In some versions of SQL this operator may be written as != BETWEEN Between a certain range LIKE Search for a pattern IN To specify multiple possible values for a column
The SQL AND, OR, and NOT Operators
The WHERE clause can be combined with AND, OR, and NOT operators.
The AND and OR operators are used to filter records based on more than one condition:
- The
AND operator displays a record if all the conditions separated by AND are TRUE. - The
OR operator displays a record if any of the conditions separated by OR is TRUE.
The NOT operator displays a record if the condition(s) is NOT TRUE.
AND Syntax
SELECT column1, column2, ...
FROM table_name
WHERE condition1 AND condition2 AND condition3 ...;OR Syntax
SELECT column1, column2, ...
FROM table_name
WHERE condition1 OR condition2 OR condition3 ...;NOT Syntax
SELECT column1, column2, ...
FROM table_name
WHERE NOT condition;
0 Comments