Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
Query 2
Finds the most volatile
stocks (highest variance in prices).
SELECT stock_symbol, VARIANCE(share_price) varFROM tradeGROUP BY stock_symbolORDER BY var DESC;
Last modified: