i am unable to separte the table with the field from the below query. every query becomes table_name.field_name but i want only field_name as i want to output dummy string from the sql but i am unable to achieve this
$select1 = $dbAdapter->select()
->from("list",array("list_id","xyz"));
the above query results generates following sql
SELECT `list`.`list_id`, `list`.`xyz` FROM `list`;
but i want my query as
SELECT `list`.`list_id`, `xyz` FROM `list`;
how can i achieve this result...??