Oracle sql函数问题

发布于 2024-09-06 13:40:22 字数 29 浏览 4 评论 0原文

如何显示姓名首尾位置相同字符的员工详细信息?

How to display the details of employee whose name contains the same characters at the start and end position of their name?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你不是我要的菜∠ 2024-09-13 13:40:22

有两种方法可以使用 SUBSTR() 来识别 ENAME 的一部分。更正统的方法的工作原理是传递一个负值作为从字符串的 end 开始的偏移量:

SQL> select ename
  2  from emp
  3  where substr(ename,1,1) = substr(ename,-1,1)
  4  /

ENAME
----------
TROMBONIST

SQL>

只是为了笑,我包括第二种方法,它使用未记录的 REVERSE() 函数

SQL> select ename, reverse(ename)
  2  from emp
  3  where substr(ename,1,1) = substr(reverse(ename),1,1)
  4  /

ENAME      REVERSE(EN
---------- ----------
TROMBONIST TSINOBMORT

SQL>

: 10g 及更高版本我们还可以使用正则表达式来解决这个问题:

SQL> select ename
  2  from emp
  3  where regexp_substr(ename,'^.') = regexp_substr(ename,'.
)
  4  /

ENAME
----------
TROMBONIST

SQL>

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:

SQL> select ename
  2  from emp
  3  where substr(ename,1,1) = substr(ename,-1,1)
  4  /

ENAME
----------
TROMBONIST

SQL>

Just for grins, I include the second approach which uses the undocumented REVERSE() function:

SQL> select ename, reverse(ename)
  2  from emp
  3  where substr(ename,1,1) = substr(reverse(ename),1,1)
  4  /

ENAME      REVERSE(EN
---------- ----------
TROMBONIST TSINOBMORT

SQL>

In 10g and higher we can also be solve this with regular expressions:

SQL> select ename
  2  from emp
  3  where regexp_substr(ename,'^.') = regexp_substr(ename,'.
)
  4  /

ENAME
----------
TROMBONIST

SQL>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文