176. Second Highest Salary
주요 개념OFFSETSELECT 컬럼FROM 테이블ORDER BY 정렬기준LIMIT 1 OFFSET 1; LIMIT 1 → 결과에서 1개만 보여줘OFFSET 1 → 결과 중에서 앞에서 1개는 건너뛰고+-------------+------+| Column Name | Type |+-------------+------+| id | int || salary | int |+-------------+------+id is the primary key (column with unique values) for this table.Each row of this table contains information about the salary of an employee. Write a solut..