Hi Any update on prisma supporting SQL functions like GROUP_CONCAT, FIND_IN_SET etc?
โ 1
n
Nurul
06/22/2022, 10:47 AM
Hey Keshav ๐
We donโt have any updates at the moment, you would need to use Raw Query for now.
We have a feature request for supporting advanced SQL functions: #3996
Please feel free to add a ๐ to the request and subscribing to the request to get latest updates.
k
Keshav Tangri
06/23/2022, 5:31 AM
Hi Nurul, thanks for the update. What about Joins ? I suppose LEFT, RIGHT, OUTER Joins etc are not supported by prisma yet ? am I correct ? If so what is the possible time roadmap prisma team is planning to incorporate the joins ?
n
Nurul
06/23/2022, 3:18 PM
Prisma offers an abstraction over JOINs via its
include
option, so you could use include to achieve joins.
k
Keshav Tangri
06/28/2022, 1:22 PM
include is equivalent for INNER Join I suppose. What about LEFT, RIGHT and OUTER ?