- or download this
create table stocks_daily
(
...
volume int NOT NULL,
adjust real NOT NULL
);
- or download this
# get the max:
my $high = $quote_model->search(
...
)->single();
print "high: ", $high->c, "\n";
- or download this
select Max(c) from stocks_daily where symbol = '?' and date >= '?'