Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel 5 SQLSTATE[42S22]: Column not found

I am doing some joins and trying to get the data. My query builder is:

$datasource = DB::table('vehicles')->join('brands', 'vehicles.brand_id', '=', 'brands.id')->join('sections', 'vehicles.section_id', '=', 'sections.id')->select('vehicles.*, vehicles.id AS vid');

But i am getting this error:

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'vehicles.model,' in 'field list' (SQL: select vehicles.model, as AS from vehicles inner join brands on vehicles.brand_id = brands.id inner join sections on vehicles.section_id = sections.id limit 4 offset 0) Line 620

What i am doing wrong ?

like image 396
Tartar Avatar asked Mar 15 '23 21:03

Tartar


1 Answers

You should use selectRaw() instead of select():

->selectRaw('vehicles.*, vehicles.id AS vid');

Read more about raw expressions: http://laravel.com/docs/5.0/queries#raw-expressions

like image 170
Limon Monte Avatar answered Mar 24 '23 20:03

Limon Monte