public inbox for [email protected]  
help / color / mirror / Atom feed
From: Jeff Ross <[email protected]>
To: [email protected]
To: [email protected]
Subject: Re: Removing terminal period from varchar string in table column
Date: Tue, 15 Jul 2025 11:43:17 -0600
Message-ID: <[email protected]> (raw)
In-Reply-To: <[email protected]>
References: <[email protected]>

On 7/15/25 11:30, Rich Shepard wrote:

> I want to remove the terminal period '.' from the varchar strings in the
> 'company_name' column in all rows with that period in the companies 
> table.
>
> I've looked at trim(), translate(), "substr(company_name 1,
> length(compan_name) - 1)", and a couple of other functions and am 
> unsure how
> best to do this without corrupting the database table.
>
> Advice needed.
>
> TIA,
>
> Rich
>
>
>
How about

test:

     select company_name, replace(company_name,'.','') from companies;

update:

     update companies set company_name = replace(company_name,'.','') 
where company_name like '%.';

?

Jeff


view thread (2+ messages)  latest in thread

reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Reply to all the recipients using the --to and --cc options:
  reply via email

  To: [email protected]
  Cc: [email protected], [email protected], [email protected]
  Subject: Re: Removing terminal period from varchar string in table column
  In-Reply-To: <[email protected]>

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox