Oracle sql函数问题
如何显示姓名首尾位置相同字符的员工详细信息?
How to display the details of employee whose name contains the same characters at the start and end position of their name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两种方法可以使用 SUBSTR() 来识别 ENAME 的一部分。更正统的方法的工作原理是传递一个负值作为从字符串的 end 开始的偏移量:
只是为了笑,我包括第二种方法,它使用未记录的 REVERSE() 函数
: 10g 及更高版本我们还可以使用正则表达式来解决这个问题:
There are two ways to do this using SUBSTR() to identify a portion of the ENAME. The more orthodox approach works on the basis that passing a negative value as the offset counts from the end of the string:
Just for grins, I include the second approach which uses the undocumented REVERSE() function:
In 10g and higher we can also be solve this with regular expressions: