How to cover this custom SQL with Prisma
Hi, i currently use this SQL statement to fetch data and make calculations. Is this also possible without a RAW query?
2 Replies
Hi @Nico Schett 👋
This is not possible without using queryRaw as Prisma Client doesn't have support for SQL functions like
SUM
, MAX
etc.Okay thanks