Employees (contains EmployeeID, FirstName, LastName, Department, Salary, age) and Products (contains ProductID, ProductName, Category, Price, Stock). Write the SELECT queries to solve the following business requests.
Products table.FirstName, LastName, and Salary of all employees.Employees table.Price is greater than or equal to 500.Department AND earn a Salary greater than 75000.age falls between 25 to 35.LastName ends with 'son' (e.g., Johnson, Anderson).ProductName is exactly 5 characters long and starts with 'Phone' (e.g., Phone X, Phone 8). Hint: Use an underscore for the missing character.FirstName starts with the letter A, B, or C.FirstName does not start with the letters X, Y, or Z.Department in ascending alphabetical order, and then by their Salary in descending order.Price.Salary (highest to lowest).