jerry
Good day to you all.
I have been struggling to get a query involving like and ilike to work.
Can anyone assist me on this, please?
product="SurfacePro"
from(u in Product,
where: like(u.product_name, %product%),
select: %{product_id: u.id, description: u.product_desc}
) |> Repo.all
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
Have you taken a look at the documentation? Ecto.Query.API — Ecto v3.14.0
From how I read it, you need to pass in a string as second argument, eg.
like(u.product_name, "%SurfacePro%"), but you wan’t this probably set dynamically at runtime from user input.Since I’m not sure if you are allowed to interpolate a string in the query the way you would do it outside, I’ll prepare it and then pin:
jerry
Hello @NobbZ,
Many thanks.
Your suggestion worked.
I had tried several different options without success.
Regards,
Jerry
rameshsharma
Can someone please guide me here, below is my requirement:-
iex:8> Repo.all(from u in AdminUser, select: u.roles)
This query gives the below result:-
[
[“root”],
[“super”, “transfer”, “operator”],
[“super”, “transfer”, “operator”],
[“super”, “operator”],
[“root”]
]
This is working to get the count for “root” as 2.
Repo.one(from u in AdminUser, where: u.roles == [1], select: count(“*”))
How to get the count of rows with only “super”?
“root” ↩︎
lucaong
Hi @rameshsharma , welcome to the forum!
Yours sounds like a different question than the one in this thread, as it’s not about LIKE/ILIKE queries (or am I mistaken?).
If so, it’s probably better to post it as a separate question, outlining your problem and goals. Some useful info would be:
rolescolumn? Is it a Postgres array of strings?super(and no other role), or rows that includesuperamong the roles?rameshsharma
Hi Luca,
Thanks for responding. I posted here as I thought it could be linked to like search. S.orry for that
The roles column in database is a Postgres array of strings. You are correct.
I want to get the count of rows that include ‘super’ among the roles?
lucaong
I don’t have a computer here to try this right now (I am on my phone now), but if you are selecting for rows that contain
superamong the roles, you should be able to do so with theANY(array)expression. Adapting from your query, something like this (untested):“root” ↩︎
rameshsharma
Sorry Luca, getting error here with this query:-
iex:9> Repo.one(from u in AdminUser, where: fragment(“ANY(roles)”) == “super”, select: count(“*”))
[debug] QUERY ERROR source=“admin_users” db=0.0ms queue=2.3ms idle=1758.9ms
SELECT count(‘*’) FROM “admin_users” AS a0 WHERE (ANY(roles) = ‘super’)
** (Postgrex.Error) ERROR 42601 (syntax_error) syntax error at or near “ANY”
lucaong
Sorry, I am not able to check it now. Maybe you just need to add a space after
ANY, likeANY (roles), or you need to invert the order, like"super" == fragment("ANY(roles)"), or maybe I am just completely off.rameshsharma
You are a genius Luca. Reverting the order works. Thanks for your help.
iex:13> Repo.one(from u in AdminUser, where: “super” == fragment(“ANY(roles)”), select: count(""))
[debug] QUERY OK source=“admin_users” db=1.7ms idle=1958.4ms
SELECT count('') FROM “admin_users” AS a0 WHERE (‘super’ = ANY(roles))
3.
silverdr
Apparently one can pin the interpolated string too