I just want do execute an Ecto query with an simple concatination of two or more columns.
I think the following elixir pseudo code already shows what I try to do:
customers = Customer.undeleted(
from c in Customer,
select: %{id: c.id, name: c.name <> " – " <> c.street},
order_by: c.name
) |> Repo.all
It drives me crazy cuz in SQL it is easy like this: ...SELECT c.id, concat(c.name, ' - ', c,street) AS name
Any ideas how to solve this with ecto querys ?