Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the responsive-lightbox domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the hueman domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/wp-includes/functions.php on line 6114
Where Clause - Testingpool

Where Clause

Where Clause….is used to filter results from SQL statements like Insert,Update,Select,Delete that meet the filter criteria.

Syntax : 

SELECT   *  FROM <Tablename> WHERE <Column> = <Value>;

Sample Database

sample database

ILLUSTRATION  OF WHERE CLAUSE USING COMPARISON OPERATORS :

WHERE clause can be used in combination with following comparison operators :

=     Equal
<     Less Than
>     Greater Than
<=  Less Than Equal To
>=  Greater Than Equal To
<>  Not Equal To

WHERE CLAUSE

Similarly like above examples other operators like >=,<=,<> can also be used with WHERE Clause. ‘IN’ operator is used in order to fetch multiple values.

ILLUSTRATION OF WHERE CLAUSE USING ‘AND’ and ‘OR’ Conditions.

where clause

ILLUSTRATION OF WHERE CLAUSE USING ‘BETWEEN’ and ‘LIKE’

WHERE CLAUSE

ILLUSTRATION OF WHERE CLAUSE USING MULTIPLE CONDITIONS :

WHERE CLAUSE

Queries for Practice :

Ques 1 : Display the employee number and name  who are earning comm ?

SQL> Select empno,ename from emp where comm is not null;

Ques 2 : Display the employee number and name  who do not earn any comm ?

SQL> Select empno,ename from emp where comm is null;


 

Avatar photo

Shikha Katariya

Shikha

You may also like...