Código SQL:
Ver originalCREATE TABLE #fecha
(
fecha datetime
)
INSERT INTO #fecha VALUES (getdate())
INSERT INTO #fecha VALUES (getdate()-1)
INSERT INTO #fecha VALUES (getdate()-2)
INSERT INTO #fecha VALUES (getdate()-3)
INSERT INTO #fecha VALUES (getdate()-4)
INSERT INTO #fecha VALUES (getdate()-5)
SELECT fecha FROM (
SELECT ROW_NUMBER() OVER(ORDER BY fecha DESC) AS rn, fecha FROM #fecha
) t1 WHERE rn=2
con eso sacas la fecha penultima :)