参考書に載っていたfindcountは非推奨になったよう。

--コントローラー内--

//レコードのの数を取得

//フィールドの条件を指定
$condition = array( "id" => "1");
$col = $this->Place->find('count', array('conditions' => $condition));

//ビューに渡す
$this->set('col_view', $col);