Help for this page

Select Code to Download


  1. or download this
    # select $$what$$ from offices'
    
    $sql->offices(what => "`address`, `address2`, `city`, `state`");
    
  2. or download this
    # select $$what$$ from offices
    
    $sql->offices(what => [ qw/address address2 city state/ ]);
    
  3. or download this
    # select $$what$$ from offices where office_id=?
    
    $sql->offices(what => [qw/name city/])->do($office_id);