Complete the code to create a new table named 'customers' in Supabase dashboard.
CREATE TABLE [1] (id SERIAL PRIMARY KEY, name TEXT);The table name should be 'customers' as specified in the instruction.
Complete the code to add a column for storing email addresses as text.
ALTER TABLE customers ADD COLUMN [1] TEXT;The column to store email addresses should be named 'email'.
Fix the error in the code to create a table with a primary key.
CREATE TABLE orders (order_id [1] PRIMARY KEY, order_date DATE);The 'SERIAL' type automatically creates an auto-incrementing integer suitable for primary keys.
Fill both blanks to create a table 'products' with an integer primary key and a text column 'product_name'.
CREATE TABLE products (product_id [1] PRIMARY KEY, [2] TEXT);
'product_id' should be 'SERIAL' for auto-increment primary key, and the text column should be named 'product_name'.
Fill all three blanks to create a table 'employees' with an auto-increment primary key, a text column 'first_name', and a date column 'hire_date'.
CREATE TABLE employees (employee_id [1] PRIMARY KEY, [2] TEXT, [3] DATE);
'employee_id' uses 'SERIAL' for auto-increment primary key, 'first_name' is the text column, and 'hire_date' is the date column.