Oracle 怎样提取除了最后三位以外数据
发布网友
发布时间:2022-04-26 10:50
我来回答
共2个回答
热心网友
时间:2022-06-27 13:37
用substr函数,参数说明是:substr( string, start_position, [ length ] )
如:
substr('This is a test', 6, 2) would return 'is'
substr('This is a test', 6) would return 'is a test'
substr('TechOnTheNet', 1, 4) would return 'Tech'
热心网友
时间:2022-06-27 13:37
substr(数据对象,1,length(数据对象) - 3)
例如:
substr('A21.SMZXI/ZG01/01',1,length('A21.SMZXI/ZG01/01') - 3)