To export a JSONB column in PostgreSQL, you can use the jsonb_to_json function to convert the JSONB data into JSON format. Then, you can use the jsonb_pretty function if you want to pretty print the JSON data. Finally, you can use the COPY command to export the JSON data to a file or another location. By combining these functions and commands, you can easily export JSONB data from a PostgreSQL table.