April 2017
Beginner to intermediate
360 pages
9h 35m
English
First, let's add a new list column to our user_status_updates table:
ALTER TABLE "user_status_updates" ADD "shared_by" LIST<text>;
The syntax for defining a list column is identical to that for defining a set column; we simply swap in LIST for SET.
Read now
Unlock full access