Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
数値の前に 0 を使用する手順が必要なため、手順を実行する前に数値を連結しました。
連結するには
update code_temp set code=0 || code
手順の実行後にこれを元に戻す必要があります。コードの先頭にある 0 を簡単に削除する方法はありますか?
ありがとう。
最初の文字を無視する部分文字列を実行できます。
UPDATE code_temp SET code = substr(code, 2)