Short answer - yes, it would be possible.
Long answer - I don't have the code handy, if that is what you are actually asking for. I do have this code which I had posted earlier for someone to get the article titles in a specific section:
PHP Code:
$myquery2 =vB::$vbulletin->db->query_read_slave($myquery = "SELECT cms_nodeinfo.title AS title FROM cms_nodeinfo RIGHT JOIN cms_node ON (cms_node.nodeid=cms_nodeinfo.nodeid) WHERE cms_node.parentnode = 2 AND cms_node.contenttypeid = 18");
while ($myarts = vB::$vbulletin->db->fetch_array($myquery2))
{
$output .= $myarts['title']."<br />";
}
So, feel free to modify that for your own needs.