Show raw SQL query

You are viewing revision #1 of this wiki article.
This is the latest version of this article.

Here's a quick tip to dump the SQL for query.

$query = new Books::find()->where('author=2');
echo $query->createCommand()->sql;

or to get the SQL with all parameters included try:

$query->createCommand()->getRawSql()

Thanks to http://chris-backhouse.com/Yii2-Output-the-SQL-from-a-query-builder/1027

19 1
5 followers
Viewed: 241 395 times
Version: Unknown (update)
Category: FAQs
Written by: darioo
Last updated by: darioo
Created on: Jan 14, 2017
Last updated: 7 years ago
Update Article

Revisions

View all history