create & createMany
* 데이터 추가
await client.?????.create({
data: {},
});
----------------------------------------
await client.?????.createMany({
data: {},
});
findFirst & findUnique & findMany
* 모든 데이터 읽기
await client.?????.findMany({})
* 모든 데이터 중 필터링
await client.?????.findMany({
where: {}, // 검색하고자 하는 컬럼 지정
select: {}, // where에서 선택한 데이터 중에서 특정 key값만 추출
});
updateMany
* 데이터 수정
await client.?????.updateMany({
where: {},
data: {},
});
deleteMany
* 데이터 삭제
await client.?????.deleteMany({
where: {},
});
gte
: x보다 크거나 같은 것을 가져옴gt
: x보다 큰 것을 가져옴lte
: x보다 작거나 같은 것을 가져옴lt
: x보다 작은 것을 가져옴equals
: 지정 가능