gpt4 book ai didi

mysql - Laravel 4 查看sql查询

转载 作者:行者123 更新时间:2023-11-29 00:23:38 24 4
gpt4 key购买 nike

在 Laravel 上工作时,我们会这样查询:

$user = DB::table('users')->where('name', 'John')->first();

如何查看生成的sql查询?这对于开发过程中的调试非常重要。

谢谢。

最佳答案

根据 this answer ,您应该能够使用它来获取最后执行的查询:

$queries = DB::getQueryLog(); // gets a log of all executed queries
$last_query = end($queries); // gets the last one

关于mysql - Laravel 4 查看sql查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20086374/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com