我需要更改此功能
public function getScripts($page, $section){
$data = Yii::app()->db->createCommand()
->select('*')
->from('scripts')
->where("page_id='$page' and section_id='$section'")
->queryAll();
return $data;
}
进入 MySQL 中的存储过程。我将如何在 Yii for MySQL 中执行此操作。