fetchSql:作用:输出sql语句。优点:便于调试.

<?php
namespace app\index\controller;

use app\BaseController;
use think\facade\Db;
class Index extends BaseController
{
public function hello()
{
$res=Db::table('user')->field('id,title')->where('id','>',19)->fetchSql(true)->select();
halt($res);//fetchSql默认是flase就是说跟没写一样的,true就是输出一条查询语句
}
}

tp6中fetchSql的作用是啥呀?_sql