Help for this page

Select Code to Download


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