📜  在 laravwel 中具有 where 条件的 DB raw - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:02.852000             🧑  作者: Mango

代码示例1
$someVariable = Input::get("some_variable");

$results = DB::select( DB::raw("SELECT * FROM some_table WHERE some_col = '$someVariable'") );