To add a column description to a table's details page, you'll need to utilize the Redshift COMMENT command. You will also need to be the owner of the table.
The syntax is
COMMENT ON COLUMN table_name.column_name IS 'text';
After successfully executing that SQL statement, the Description column of the Table Details Page will update accordingly.
For example, I could run:
COMMENT ON COLUMN public.cta_ridership_daily.stationname IS 'The name of the station.';
Comments
0 comments
Please sign in to leave a comment.