Results as hash => '$VAR1 = [ { 'name' => 'Fran', 'hiredate' => '2006-05-01', 'id' => '1', 'salary' => '100000' }, { 'name' => 'Barry', 'hiredate' => '2006-04-01', 'id' => '2', 'salary' => '90000' }, { 'name' => 'Anna', 'hiredate' => '2006-01-01', 'id' => '3', 'salary' => '80000' }, { 'name' => 'Cynthia', 'hiredate' => '2006-02-01', 'id' => '4', 'salary' => '70000' }, { 'name' => 'Enrico', 'hiredate' => '2006-03-01', 'id' => '5', 'salary' => '60000' }, { 'name' => 'Derek', 'hiredate' => '2006-06-01', 'id' => '6', 'salary' => '50000' } ]; ' Results as array => '$VAR1 = [ [ '1', 'Fran', '100000', '2006-05-01' ], [ '2', 'Barry', '90000', '2006-04-01' ], [ '3', 'Anna', '80000', '2006-01-01' ], [ '4', 'Cynthia', '70000', '2006-02-01' ], [ '5', 'Enrico', '60000', '2006-03-01' ], [ '6', 'Derek', '50000', '2006-06-01' ] ]; '