Listing 32.12. Metoda Application_Model_DbTable_Panstwo::getNieprzypisane()
public function getNieprzypisane()
{
    $select = $this->select()->where('kontynent_id is null')->order('nazwa');
    return $this->fetchAll($select);
}