Home supabase Insert data
Post
Cancel

supabase Insert data

내일배움캠프 LGLG!

최종 프로젝트 주차 - Team Project

Insert data

데이터 생성하기

1
2
3
const { error } = await supabase
.from('countries')
.insert({ id: 1, name: 'Denmark'})

데이터 생성 및 반환하기

1
2
3
4
const { data, error } = await supabase
.from('countries')
.insert({ id: 1, name: 'Denmark'})
.select()

여러개의 데이터 생성하기

1
2
3
4
5
6
const { error } = await supabase
.from('countries')
.insert([
  {id: 1, name: 'Nepal'},
  {id:1, name: 'Vietnam'}
])
This post is licensed under CC BY 4.0 by the author.

supabase Fetch data

supabase Update data