Which of the following sequences correctly describes the steps to create a new table in the Supabase dashboard?
Focus on the dashboard section dedicated to tables and the typical steps to define a table.
Creating a table via the dashboard involves navigating to the Database section, selecting Tables, then using the 'New Table' button to define columns and keys before saving.
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)?
Think about what SUM does over the Amount column.
The SUM function adds all values in the Amount column. 100 + 200 = 300.
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?
Consider which chart best shows parts of a whole for categories.
A pie chart clearly shows how total sales are divided among products, making it easy to compare proportions.
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?
Think about how orders relate to customers in real life.
Each customer can have many orders, so a one-to-many relationship from Customers to Orders on CustomerID is correct.
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?
Reserved keywords cannot be used as column names. Try renaming the column.
Renaming the column to a non-reserved name like TotalAmount avoids the conflict and allows saving.