Inserting and querying data
📖 Scenario: You are building a simple cloud database for a small bookstore. You want to add books to the database and then find books by their author.
🎯 Goal: Create a table with book data, add a configuration variable for filtering, write a query to find books by a specific author, and complete the setup to return the query results.
📋 What You'll Learn
Create a table called
books with columns id, title, and authorInsert three specific books into the
books tableCreate a variable called
author_name to filter books by authorWrite a query to select books where
author matches author_nameComplete the query to return the filtered books
💡 Why This Matters
🌍 Real World
Managing and querying data in a cloud database is essential for many applications like online stores, blogs, and inventory systems.
💼 Career
Knowing how to insert and query data in cloud databases like Supabase is a key skill for backend developers and cloud engineers.
Progress0 / 4 steps