Quantcast
Viewing all articles
Browse latest Browse all 14

Answer by khandar shailesh for Laravel Eloquent "WHERE NOT IN"

You can do following.

DB::table('book_mast') ->selectRaw('book_name,dt_of_pub,pub_lang,no_page,book_price')  ->whereNotIn('book_price',[100,200]);

Viewing all articles
Browse latest Browse all 14

Trending Articles