6 - Filtering Data by using (where , and , or , ! , > , <)
ORIGINAL TABLE GENERATED
List from which we filter Data
data from table where emp_id has value 2
data from table where value of salary is 900
data from table where first_name is Tom as well as salary is 900
data from table where either the last_name is Khan or salary is 8000
data from table where either the last_name is Khan or salary is greater than 80000
data from table where the last_name is Khan as well as salary is greater than 80000
data from table where either last_name is Geller or salary is not equal to 50000
data from table where value of salary is between 600 and 10000
data from table where value of salary is any of the values given 50000,8000,900
Comments
Post a Comment