Search
 
SCRIPT & CODE EXAMPLE
 

PHP

raw query in laravel with parameters

$someVariable = Input::get("some_variable");
$results = DB::select( DB::raw("SELECT * FROM some_table WHERE some_col = :somevariable"), array(
   'somevariable' => $someVariable,
 ));

DB::statement( 'ALTER TABLE HS_Request AUTO_INCREMENT=:incrementStart', array('incrementStart' => 9999) );
Comment

laravel db raw query execute

//true
$cards = DB::select("SELECT * ");

// false
$cards = DB::raw("SELECT * ");
Comment

laravel select raw where

 User::query()
                ->where('users.ban', '!=', 1)
                ->where('users.rights', '=', 1)
                ->leftJoin('users as referal', 'users.id', '=', 'referal.ref_id')
                ->whereNotNull('referal.id')
                ->select([
                    'users.id',
                    'users.name',
                    'users.telegram_id',
                    DB::raw('count(referal.id) as total_referal'),
                    DB::raw("(SELECT COUNT(ac_r.id) FROM users as ac_r WHERE ac_r.ref_id=users.id AND ac_r.ref_bonus = 1) as active_referal"),
                    DB::raw("(SELECT COUNT(ac_r.id) FROM users as ac_r WHERE ac_r.ref_id=users.id AND ac_r.ref_bonus != 1) as no_active_referal"),
                    DB::raw("((SELECT COUNT(ac_r.id) FROM users as ac_r WHERE ac_r.ref_id=users.id AND ac_r.ref_bonus = 1) * ".User::REFERAL_BONUS.") as total_money_referal"),
                ])
                ->groupBy('users.id')
   ->orderByDesc('total_referal')->paginate(100);
Comment

laravel Raw query methods

// whereRaw
$orders = DB::table('orders')
    ->whereRaw('price > IF(state = "TX", ?, 100)', [200])
    ->get();
// havingRaw
Product::groupBy('category_id')->havingRaw('COUNT(*) > 1')->get();
// orderByRaw
User::where('created_at', '>', '2016-01-01')
  ->orderByRaw('(updated_at - created_at) desc')
  ->get();
Comment

raw php laravel

@php
    $counter = 1;
@endphp
Comment

PREVIOUS NEXT
Code Example
Php :: Get User IP address (PHP) 
Php :: factorial program in php using recursive function 
Php :: php subtract date from today 
Php :: laravel orderby with relation 
Php :: default php program 
Php :: php bubble sort 
Php :: laravel difference between current time and created time 
Php :: laravel check if field has changed 
Php :: mt_rand 
Php :: carbon random future date 
Php :: laravel validate max file size 
Php :: How to fix MySql: index column size too large (Laravel migrate) 
Php :: what is directory_separator in php 
Php :: How to install a specific version of package using Composer? 
Php :: php get and print file contents 
Php :: how to compare two versions in php 
Php :: laravel group by on subquery 
Php :: codeigniter store session data 
Php :: laravel login redirect to previous page 
Php :: foreignid in laravel 
Php :: sort laravel eloquent 
Php :: laravel where first 
Php :: wordpress notice 
Php :: random number laravel faker 
Php :: laravel limit relationship result 
Php :: Type error: Argument 1 passed to IlluminateAuthEloquentUserProvider::validateCredentials() 
Php :: laravel with where has 
Php :: php top frameworks 
Php :: separate date from datetime php 
Php :: remove whitespace from string php 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =