itopiz
I am working with MS SQL server and I am trying to build a complex query with ecto which contains a CTE:
WITH
timeslots AS
(
SELECT cast('2021-01-09T00:00:00' as smalldatetime) as slot
UNION ALL
SELECT dateadd(minute , 1, slot)
FROM timeslots
WHERE dateadd(minute, 1, slot) < '2021-01-15T00:00:00'
),
After reading the documentation for CTE with Ecto, I was trying to build the “initial query” but I did not get far.
Indeed, I do not see how I can select a value not coming from a table (e.g.: SELECT cast('2021-01-09T00:00:00' as smalldatetime) as slot).
Is there a way to do that without using fragments?
Trending in Questions
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
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
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’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
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
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
cenotaph
sure you can but haven’t tested nested, inner queries but cast and rest can be done.
More examples can be found at
cenotaph
Btw if you are dealing with datetime, please check out these before investing unnecessary time into fragments() like I did
count/0,count/1,avg/1,sum/1,min/1,max/1datetime_add/3,date_add/3,from_now/2,ago/2Intervals
Ecto supports following values for
intervaloption:"year","month","week","day","hour","minute","second","millisecond", and"microsecond".Date/Timefunctions likedatetime_add/3,date_add/3,from_now/2,ago/2takeintervalas an argument.All of these will execute on the SQL server and use the native underlying functions
edisonywh
Wow thanks for sharing, I had been using Timex for this purpose but built-in solution is great!
itopiz
Thanks for your reply but it does not answer my question. Perhaps I did not explain correctly.
How would you write
SELECT 1with Ecto? Here I select a simple literal and it is not done over any table.cenotaph
itopiz
Once again, I did not explain correctly. Sorry for that.
In my initial question, I wrongly wrote “without using fragments”. What I meant was “without using raw SQL”.
mindok
I’m not going to answer your question again
In the sample above, I’d personally opt to “inject” the empty slot once the results have come back from the database. Adding to the front of a list in Elixir is a very “cheap” operation.
e.g.
I suspect the situation you are asking about (effectively “UNION”-ing a hand crafted row of data with database results) doesn’t fit within the Ecto model. I had another look through the documentation and I can’t see anything that comes close. So you will either need to use a fragment, or go for the option I noted above, or build a view that performs the UNION on the database side.
hauleth
No, there currently is no way to use
Ecto.Querywith no or non-relationFROM(so no stored procedures for you either).NaN
This can be done but its hacky. However, IMO it should not be removed (PLEASE DONT REMOVE THIS we want the query scrubbed without the
FROMcondition) taking from SQL injection you can use--to rem out theFROMcondition.