Yii 2.0: 显示原始Sql查询
2017-11-03 本文已影响7人
方圆百里找对手
这里有一个快速的提示转储查询的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()