Ok, bin nach Hause gekommen und konnte das herausfinden.
SELECT stock_id, t1.price AS `then`, t2.price AS `now`, ROUND(t2.price - t1.price, 2) AS `difference`
FROM (
SELECT stock_id, price, date FROM share_prices sp
WHERE date = (SELECT MIN(date) FROM share_prices sp2
WHERE date BETWEEN '2010/02/23 10:00:00'
AND '2010/02/24 10:00:00'
AND sp2.stock_id = sp.stock_id)
) t1
JOIN
(
SELECT stock_id, price, date FROM share_prices sp
WHERE date = (SELECT MAX(date) FROM share_prices sp2
WHERE date BETWEEN '2010/02/23 10:00:00'
AND '2010/02/24 10:00:00'
AND sp2.stock_id = sp.stock_id)
) t2 USING(stock_id)
ORDER BY `difference` DESC
Verwendet die Ergebnisse von 2 Unterabfragen, jede mit ihrer eigenen Unterabfrage zum ersten bzw. letzten Datensatz für diesen Bereich.
Ich habe integer
verwendet für stock_id
, float
für price
und timestamp
für das Datum, da es bei anderen Datentypen zu Problemen (insbesondere mit MIN und MAX) kommen kann.