PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

WhereRaw Laravel con variabile

Il modo più semplice per farlo. La speranza ti aiuterà

DB::table('my_table')->select('id')
    ->where(DB::raw("UCASE(name)"), $upper_name) 
    ->first();

UCASE - Converti il ​​testo in maiuscolo