Dhaval Vira
07/17/2022, 2:34 AMSELECT * FROM tableName WHERE id NOT IN (SELECT columnName FROM tableName WHERE (startDateInputFromUser between startDate and endDate) or (endDateInputFromUser between startDate and endDate))
here in WHERE clauses the startDateInputFromUser & endDateInputFromUser it's from the User Input & other startDate & endDate is the Table Column Name... can anyone help me how I can write this query in the Prisma ORM?Nurul
07/19/2022, 1:08 PM