USE ANY DATABASE
Update record in Supabase
Load your data in here with "Read" and play with “Update” to try out your API connection.
What is CRUD ?
CRUD stands for Create, Read, Update, Delete. Those are the basic functions most web applications need.
post
Create
The create function enables you to create a new record in a database.
get
Read
The read function enables you to search and retrieve specific records from existing entries.
put
Update
The update function enables you to modify or edit existing records in a database.
delete
Delete
The delete function enables you to remove existing records from a database.