I'm using query builder with laravel and i'm trying to get the equivalent of
SELECT name
, firstname
FROM emp
WHERE name+' '+firstname LIKE '%test%'
in query builder? How could I have the same result?
I'm using query builder with laravel and i'm trying to get the equivalent of
SELECT name
, firstname
FROM emp
WHERE name+' '+firstname LIKE '%test%'
in query builder? How could I have the same result?