3 lines
169 B
Plaintext
3 lines
169 B
Plaintext
select symbol, max(ts) from stock_ticks_mor group by symbol HAVING symbol = 'GOOG';
|
|
select symbol, ts, volume, open, close from stock_ticks_mor where symbol = 'GOOG';
|