I am still learning MySQL queries and am stuck with this one. I have a database of EMPLOYEE. It contains one table EMP_INFO. It has on field named SALARY. In my HTML form I have 2 text fields to enter SALARY. I want to fetch all the employee’s information from my EMP_INFO table whose salary comes within the entered salary limits.
I am still learning MySQL queries and am stuck with this one. I have
Share
Use below query…
select * from EMP_INFO where salary between 10000 AND 25000Good luck