In Yii レンダリングされたクエリを実行前に表示する方法。
$sql="SELECT * from users WHERE user_id = :user_id";
$command=Yii::app()->db->createCommand($sql);
// replace the placeholder ":user_id" with the actual username value
$command->bindParam(":user_id",$user_id,PDO::PARAM_INT);
echo "<br/>".$command->getText();
バインド パラメータに含まれるクエリを出力したいと思います。たとえば、user_id = 1 の場合
SELECT * from users WHERE user_id = 1