Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sOlLL-0011WD-S3 for pgsql-general@arkaria.postgresql.org; Tue, 02 Jul 2024 21:47:19 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1sOlLI-004Muy-R7 for pgsql-general@arkaria.postgresql.org; Tue, 02 Jul 2024 21:47:17 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sOlLI-004Muq-GS for pgsql-general@lists.postgresql.org; Tue, 02 Jul 2024 21:47:17 +0000 Received: from mail.appl-ecosys.com ([50.126.108.78]) by magus.postgresql.org with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sOlLH-0007JD-AE for pgsql-general@postgresql.org; Tue, 02 Jul 2024 21:47:16 +0000 Received: from salmo.appl-ecosys.com (salmo.appl-ecosys.com [192.168.55.1]) by mail.appl-ecosys.com (Postfix) with ESMTP id 4F72F2A2B7C for ; Tue, 2 Jul 2024 14:47:12 -0700 (PDT) Date: Tue, 2 Jul 2024 14:47:12 -0700 (PDT) From: Rich Shepard Reply-To: Rich Shepard To: pgsql-general@postgresql.org Subject: Accommodating alternative column values Message-ID: MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk In data made available from a state regulatory agency I find a few instances where a facility contact has two email addresses. While multiple locations are accommodated because they're in a table separate from the facility name and details, all people associated with a facility and location are in a 'people' table with only one column for an email addresse. While I could enter an additional email address in the 'comment' column if I'm entering data for a single facility, I'm reformatting the downloaded data so I can insert all new table data from one .sql file. Is there a way to accommodate multiple email addresses other than entering both with a forward slash separating them in the varchar(64) email address column? Suggestions appreciated, Rich