Select all record from table where column equals a values
Answers
Answered by
0
you need to use SQL to get the result as the example:
Suppose you need to get all records with Salary equal 1000 from a table called Employees.
Select * from employees
Where salary = 1000;
Similar questions