Обсуждение: Removing terminal period from varchar string in table column

Поиск
Список
Период
Сортировка

Removing terminal period from varchar string in table column

От
Rich Shepard
Дата:
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




Re: Removing terminal period from varchar string in table column

От
Jeff Ross
Дата:

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

Re: Removing terminal period from varchar string in table column

От
Thom Brown
Дата:
On Tue, 15 Jul 2025, 18:30 Rich Shepard, <rshepard@appl-ecosys.com> 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.

There are various options, but perhaps just use rtrim.

rtrim(company_name, '.')


Thom

Re: Removing terminal period from varchar string in table column

От
Rich Shepard
Дата:
On Tue, 15 Jul 2025, Thom Brown wrote:

> There are various options, but perhaps just use rtrim.
> rtrim(company_name, '.')

Thom,

I looked at rtrim() but didn't see where to specify the table name. Would it
be `select * from table companies rtrim(company_name, '.')'?

Thanks,

Rich



Re: Removing terminal period from varchar string in table column

От
Rich Shepard
Дата:
On Tue, 15 Jul 2025, Jeff Ross wrote:

> 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,

These contain the table and column names I didn't see in web page examples.
Using update looks better to me.

Many thanks,

Rich



Re: Removing terminal period from varchar string in table column

От
Thom Brown
Дата:
On Tue, 15 Jul 2025, 18:59 Rich Shepard, <rshepard@appl-ecosys.com> wrote:
On Tue, 15 Jul 2025, Thom Brown wrote:

> There are various options, but perhaps just use rtrim.
> rtrim(company_name, '.')

Thom,

I looked at rtrim() but didn't see where to specify the table name. Would it
be `select * from table companies rtrim(company_name, '.')'?

UPDATE companies
SET company_name = rtrim(company_name, '.')
WHERE company_name != rtrim(company_name, '.');

Thom

Re: Removing terminal period from varchar string in table column

От
Rich Shepard
Дата:
On Tue, 15 Jul 2025, Thom Brown wrote:

> UPDATE companies
> SET company_name = rtrim(company_name, '.')
> WHERE company_name != rtrim(company_name, '.');

Thom,

That makes sense. The web pages I read assumed I knew to use the UPDATE
command. As this was the first time I needed to clean column content I
didn't assume that update was the appropriate mechanism. Now I do.

Thanks,

Rich