如何在字符串前添加'('
How to prepend '(' to a string
我有一个包含 4 个数字的列,例如 1234。我需要 (1234) // 在括号之间
update table set column=overlay(column placing ')' from 5) where table_ID=1
我得到 1234) --> 缺少第一个括号。有什么建议吗?
最简单的方法:
update table set column='('||column||')' where table_ID=1
我有一个包含 4 个数字的列,例如 1234。我需要 (1234) // 在括号之间
update table set column=overlay(column placing ')' from 5) where table_ID=1
我得到 1234) --> 缺少第一个括号。有什么建议吗?
最简单的方法:
update table set column='('||column||')' where table_ID=1