在Laravel中查询数据库的正确语法是什么?

时间:2018-09-10 16:35:03

标签: php laravel laravel-5.2

我想查询数据库以提供数学得分为50或以下的所有条目的ID号,但似乎语法不正确。

这是我尝试过的方法,我没有收到任何错误,只是没有用。

<?php

if ($dumby->ajax()) {
    // Scan database, find any score lower than 50, then copy the ID for that row.
    $output_array[] = "";
    $output = "branson";

    $trailers = DB::table('dataentries')->where('Eng_Algebra', '=<', '50')->get();
    if ($trailers) {
        foreach ($trailers as $key => $trailers) {
            array_push($output_array, $trailers->Eng_Algebra);
        }
    }
}

0 个答案:

没有答案