Deleting multiple rows at once
I have a question, if I have like
would that delete ALL persons that have that groupId, or just one of them?
would that delete ALL persons that have that groupId, or just one of them?
await db
.deleteFrom('person')
.where('groupId', '=', id)
.execute();