add batch remove batch split batch comment selection show hidden batches hide batch highlight batch
db<>fiddle
donate feedback about
By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
CREATE TABLE tab AS
SELECT '0000-00-00 00:00:00' AS time, 'GOOGLE' AS company, 40 AS quote
UNION SELECT '2012-07-02 21:28:05' , 'GOOGLE' , 60
UNION SELECT '2012-07-02 21:28:51' , 'SAP' , 60
UNION SELECT '2012-07-02 21:29:05', 'SAP' , 20
Records: 4  Duplicates: 0  Warnings: 0
SELECT
company,
quote,
LAG(quote) OVER(PARTITION BY company ORDER BY time) AS prev_quote
FROM tab
company quote prev_quote
GOOGLE 40 null
GOOGLE 60 40
SAP 60 null
SAP 20 60