我想查询数据库以提供数学得分为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);
}
}
}