标签: database oracle oracle11g oracle10g
如何获取字符串的前三个字符和oracle中相同字符串的最后三个字符,并显示它们,查询是什么?
答案 0 :(得分:0)
select substr('hellooWorld',0,3)||substr('hellooWorld',length('hellooWorld')-2,3) from dual;
输出:
helrld