laravel db::query update
DB::table('user')->where('email', $userEmail)->update(array('member_type' => $plan));
laravel db::query update
DB::table('user')->where('email', $userEmail)->update(array('member_type' => $plan));
laravel sql query
use Illuminate\Support\Facades\DB;
$users = DB::select('select * from users');
foreach ($users as $user) {
echo $user->name;
}
raw queries in laravel
DB::statement('UPDATE users SET role_id = 1 WHERE role_id IS NULL AND YEAR(created_at) > 2020');
DB: in eloquent using sql
$results = DB::select('select * from users where id = :id', ['id' => 1]);
DB::table('users')->get();
DB::select('SELECT * FROM users WHERE name = ?', array(Input::get('name')));
eloquent where raw
/*
whereRaw / orWhereRaw
The whereRaw and orWhereRaw methods can
be used to inject a raw "where" clause into your query.
These methods accept an optional array of bindings as their second argument:
*/
$orders = DB::table('orders')
->whereRaw('price > IF(state = "TX", ?, 100)', [200])
->get();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us