mmurto
Explore posts from serversDTDrizzle Team
•Created by mmurto on 4/17/2023 in #help
Raw SQL / Postgres stored generated column in schema
Is it possibile to add raw sql, or more specifically stored generated columns to the schema? Trying to store a length field of a text column.
1 replies
DTDrizzle Team
•Created by mmurto on 4/12/2023 in #help
How to count joined table?
I'm trying to count rows returned by join for a query, basically the same as this: https://dba.stackexchange.com/questions/110850/count-rows-with-inner-joined-tables
How to convert this to Drizzle? Any documentation I've missed regarding this kind of things?
2 replies
DTDrizzle Team
•Created by mmurto on 4/9/2023 in #help
How to filter length in where for postgres?
I have a text field, which I want to select only if it's length is higher than 50. How should I do that? So I basically need to transfer
where length(item.content) >= 50
to Drizzle.4 replies
DTDrizzle Team
•Created by mmurto on 3/17/2023 in #help
Argument of type 'SQL<unknown>' is not assignable to parameter
I have the following:
and the
eq()
gives an error like:
What could be the problem?10 replies