oracle中怎么用substring截取字符串

小億
544
2024-04-01 19:19:55
欄目: 云計(jì)算

在Oracle中,可以使用SUBSTR函數(shù)來截取字符串。其基本語法如下:

SUBSTR(string, start_position, length)

其中,string為要截取的字符串,start_position為起始位置(從1開始計(jì)數(shù)),length為要截取的長(zhǎng)度。

例如,要截取字符串"Hello World"中的"Hello"部分,可以使用如下語句:

SELECT SUBSTR('Hello World', 1, 5) FROM dual;

這將返回結(jié)果為"Hello"。

0