supabase : count
supabase 레코드 수
(count)
가져오기 쿼리
1const { count, error } = await supabase 2.from('table') 3.select('id', { count: 'exact', head: true }) 4.eq('id', id); 5if (error) { 6  console.log(error); 7} 8 9console.log('count : ', count); 10
supabase
count
query
database
댓글
등록된 댓글이 없습니다.