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