Выборка из бд и вывод данных
Всем привет. Народ, помогите разобраться плз. Есть такая вот выборка...
<?php
$typecas='article';
$select=db_select('node', 'n');
$select->join('field_data_field_top_article', 'tc', 'n.nid = tc.entity_id');
$select->fields('n', array('nid'));
$select->fields('tc', array('entity_id'));
$select->condition('n.status', '1');
$select->condition('tc.field_top_article_value', '1');
$select->condition('n.type', $typecas);
$select->range(0,3);
$res = $select->execute();
foreach ($res as $rowres) {
$load_node = node_view(node_load($rowres->nid), 'teaser');
print drupal_render($load_node);
}
?>