In mysql i will show how to get mysql second highest salary given below example step by step. Step : 1 – Create Table CREATE TABLE employee (id int(11) DEFAULT NULL,name varchar(40) DEFAULT NULL,salary int(11) DEFAULT NULL) ENGINE=InnoDB DEFAULT CHARSET=latin1; Step : 2 – Insert […]