Computer Science, asked by anmolkhatri, 1 year ago

Is it possible to extract info based on more than one condition in a single query ??

Answers

Answered by karthik4297
31
Yes, you can fetch record by applying multiple conditions.
eg.-
SELECT emp_name FROM emp_table WHERE salary>10000 AND empid>=1000.

Answered by SiddhantSoni
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