ANY operator is same as IN operator. This operator is rarely used in SQL.  
Read more about IN operator here
Syntax:
select columns from table_name where column_name = ANY ( values )
Examples:- 
Consider below EMP table structure
| Empno | Empname | Salary | Deptno | 
| 10 | Bill | 12000 | 5 | 
| 11 | Solomon | 10000 | 5 | 
| 12 | Susan | 10000 | 5 | 
| 13 | Wendy | 9000 | 1 | 
| 14 | Benjamin | 7500 | 1 | 
| 15 | Tom | 7600 | 1 | 
| 16 | Henry | 8500 | 2 | 
| 17 | Robert | 9500 | 2 | 
| 18 | Paul | 7700 | 2 | 
1. Find all details of Bill, Solomon and Wendy employee. 
Select * from EMP where empname = ANY( 'Bill' , 'Solomon' ,'Wendy');
2. Find details of employee earning highest salary.
Select * from EMP where salary = ANY (select max(salary) from EMP) ;
No comments:
Post a Comment