Wingy
11/27/2021, 5:53 AMGalaxyInfo.prisma.$executeRaw`
CREATE TEMPORARY VIEW "Kill_temp" AS
SELECT *
FROM "Kill_clean"
WHERE
killer_id IN (${Prisma.join(players)})
`,
Your raw query had an incorrect number of parameters. Expected: `0`, actual: `1`.
Anyone know why I'm getting this? trying to create a temp view with a dynamic where for the rest of my transaction to useRyan
11/29/2021, 5:05 AMexecuteRawUnsafe and check?Wingy
02/19/2022, 7:04 PM