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)