Display rows that have a timestamp value within the last hour
SELECT * FROM made_orders WHERE timestamp >= NOW() - INTERVAL 1 HOUR ORDER BY timestamp DESC