hi there
by default after a query like below, the result is a array with index 0,1,…
$query = new Query;
$query->select('*')->from('item')->where("id IN ($items_id)");
$result = $query->all();
i want to change array index to be item’s table id field
is it possible?