您可以使用 SUBSTR 对于Oracle数据库:
SUBSTR
SUBSTR('70800123467', 4, 8) -- remove first 3 chars from a string with length of 11 SUBSTR('70800123467', -3, 8) -- remove last 2 chars from a string with length of 11
所以,在这两个方面嵌套:
SUBSTR(SUBSTR('70800123467', 4, 8), -3, 6)
会回来的 001234 如你所愿。
001234