0
我是新的laravel 5.3並面對子查詢與雄辯的問題。我不知道如何使用口才寫出子查詢。我的查詢如下。在與concat雄辯的子查詢
select concat(m, '-', y), total
FROM (
select month(`date`) as m , year(`date`) as y, round(sum(amount)) as total
from `budget`
where
`user_id` = 1 and
`amount` is not null
group by m, y
) as t
這在MySQL中工作正常。所以我們如何才能以雄辯的方式轉換此查詢。所以懇請解決這個問題
感謝埃裏克。它正在工作。 – User101