标签: oracle11g
我在属性中有一个类似“RWCE RU Regional”的值,我只需要前四个字符即输出应该是“RWCE”
答案 0 :(得分:2)
使用subtring功能。
SUBSTR('RWCE RU Regional',1,4) should do.