Lead & Lag functions - 2012년에 소개된 함수 - Lead 함수는 후속행에 올 데이터를 현재행과 함께 쓸 수 있다. - Lag함수는 이전행 데이터를 현재행 데이터와 함께 쓸 수 있다. - ORDER BY clause is required - PARTITION BY clause is optional Syntax: LEAD(Column_Name, Offset, Default_Value) OVER (ORDER BY Col1, Col2, ...) LAG(Column_Name, Offset, Default_Value) OVER (ORDER BY Col1, Col2, ...) --Offset : Number of rows to lead or lag --Default_Value : The defa..