如何获得 sql 查询作为输出,如这张图片

如何获取查询语句作为输出?


如果我在 php 中传递这个语句


$studentTableUpdater= DB::table($session)

    ->where("rollNo", '=', $rollNo, 'AND', "name", '=', $name)

    ->update(['roomNo' => $migrateRoom]);

我可以得到输出语句为“0 行受影响。(查询耗时 0.0031 秒。)


慕斯709654
浏览 112回答 1
1回答

慕工程0101907

您可以启用查询日志,例如:DB::enableQueryLog();$studentTableUpdater = DB::table($session)    ->where("rollNo", '=', $rollNo, 'AND', "name", '=', $name)    ->update(['roomNo' => $migrateRoom]);$query = DB::getQueryLog());dd($query)
打开App,查看更多内容
随时随地看视频慕课网APP