Lowest value:
SELECT * FROM employee ORDER BY salary ASC LIMIT 0,1;
Second Lowest value:
SELECT * FROM employee ORDER BY salary ASC LIMIT 1,1;