0
0
Supabasecloud~20 mins

Creating tables via dashboard in Supabase - Practice Exercises

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Supabase Table Creator Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Table Creation Steps in Supabase Dashboard

Which of the following sequences correctly describes the steps to create a new table in the Supabase dashboard?

ANavigate to Database > Tables, click 'New Table', define columns, set primary key, then save.
BGo to Authentication > Users, click 'Add User', define user details, then save.
COpen Storage > Buckets, click 'New Bucket', set permissions, then save.
DAccess SQL Editor, write CREATE TABLE statement, then run query.
Attempts:
2 left
💡 Hint

Focus on the dashboard section dedicated to tables and the typical steps to define a table.

dax_lod_result
intermediate
2:00remaining
Result of a DAX Measure Using Table Created in Dashboard

Assume you created a table named Sales in Supabase dashboard with columns Product and Amount. You write this DAX measure in Power BI connected to Supabase:

 TotalSales = SUM(Sales[Amount]) 

What will TotalSales return if the table has rows: (Product: A, Amount: 100), (Product: B, Amount: 200)?

AError: Table not found
B100
C200
D300
Attempts:
2 left
💡 Hint

Think about what SUM does over the Amount column.

visualization
advanced
2:00remaining
Best Visualization for Newly Created Sales Table

You created a Sales table with columns Product and Amount. You want to show total sales per product in a dashboard. Which visualization type is best?

AScatter plot of product vs amount
BLine chart showing sales over time
CPie chart showing sales distribution by product
DTable showing raw data only
Attempts:
2 left
💡 Hint

Consider which chart best shows parts of a whole for categories.

data_modeling
advanced
2:00remaining
Modeling Relationships After Creating Tables

You created two tables via Supabase dashboard: Customers (CustomerID, Name) and Orders (OrderID, CustomerID, Amount). What is the best way to model their relationship in your BI tool?

ACreate a one-to-many relationship from Customers.CustomerID to Orders.CustomerID
BCreate a many-to-many relationship between Customers and Orders without keys
CMerge both tables into one flat table
DDo not create any relationship; use separate visuals
Attempts:
2 left
💡 Hint

Think about how orders relate to customers in real life.

🔧 Debug
expert
3:00remaining
Debugging Table Creation Error in Supabase Dashboard

You try to create a table named Sales with columns Product (text) and user (number). After saving, you get an error: 'Column name "user" conflicts with reserved keyword.' What should you do to fix this?

AIgnore the error and refresh the dashboard
BRename the column from user to TotalAmount and save again
CRemove the Product column and save
DChange the data type of user to text and save
Attempts:
2 left
💡 Hint

Reserved keywords cannot be used as column names. Try renaming the column.