Is it possible to extract info based on more than one condition in a single query ??
Answers
Answered by
31
Yes, you can fetch record by applying multiple conditions.
eg.-
SELECT emp_name FROM emp_table WHERE salary>10000 AND empid>=1000.
eg.-
SELECT emp_name FROM emp_table WHERE salary>10000 AND empid>=1000.
Answered by
5
Explanation:
yes it is possible to extract information based on more than one condition in a single query...
Hope It is comfortable for you....
Similar questions