I want to get 1 column from a table in Drupal as 2 aliases. Something like this but with Drupal's query methods.:
SELECT name AS label, name AS value FROM node WHERE 1
This Drupal code doesn't set the right alias:
$query = db_select('node', 'node');
$query->fields('node', array('label' => 'name','value' => 'name'));
It returns something like: [name] => Science [node_name] => Science
Is there any way to set the alias?