Help for this page

Select Code to Download


  1. or download this
        select => [
            'A.foo',
            'E.bar',
        ],
    
  2. or download this
        select => [
            'A.foo',                                  #normal
            { 'A.foo' => 'the_foo' },                 #simple
            { 'E.bar' => { alias => 'the_e_bar' } },  #flexible
        ],
    
  3. or download this
    SELECT A.foo, A.foo the_foo, E.bar the_e_bar