You shall use GROUP BY clause.
SELECT
Fname AS EmployeeFirstName,
Lname AS EmployeeLastName,
AVG(Salary) AS Sal
FROM Employee
GROUP BY employeeId; -- Replace this by the column id specific to the employees
Note: You'll need to set sql_mode to "only_full_group_by" or "" (empty)