这里有一个快速的提示转储查询的SQL。
$query = new Books::find()->where('author=2');
echo $query->createCommand()->sql;
或者获取包含所有参数的SQL请尝试:
$query->createCommand()->getRawSql()
这里有一个快速的提示转储查询的SQL。
$query = new Books::find()->where('author=2');
echo $query->createCommand()->sql;
或者获取包含所有参数的SQL请尝试:
$query->createCommand()->getRawSql()
本文标题:Yii 2.0: 显示原始Sql查询
本文链接:https://www.haomeiwen.com/subject/nxazpxtx.html
网友评论