Home supabase Update data
Post
Cancel

supabase Update data

내일배움캠프 LGLG!

최종 프로젝트 주차 - Team Project

Update data

데이터 업데이트

1
2
3
4
const { error } = await supabase
.from('countries')
.update({ name: 'Australia'})
.eq('id', 1)

데이터 업데이트 및 반환

1
2
3
4
5
const { data, error } = await supabase
.from('countries')
.upate({ name: 'Australia'})
.eq('id', 1)
.select()

JSON 데이터 업데이트

1
2
3
4
5
6
7
8
9
10
const { data, error } = await supabase
  .from('users')
  .update({
    address: {
      street: 'Melrose Place',
      postcode: 90210
    }
  })
  .eq('address->postcode', 90210)
  .select()
This post is licensed under CC BY 4.0 by the author.

supabase Insert data

supabase Upsert data