gpt4 book ai didi

sql - 如何在 PL/SQL 中访问字符串的索引?

转载 作者:行者123 更新时间:2023-12-02 07:26:52 24 4
gpt4 key购买 nike

我有一个程序说

DECLARE
str VARCHAR2(20);
BEGIN
str:='Test';
DBMS_OUTPUT.PUT_LINE(// Here I want to print a character of any index from string//);
END;
/

怎么做?

最佳答案

你会使用 SUBSTR function .例如:

DECLARE
str VARCHAR2(20);
BEGIN
str:='Test';

FOR i IN 1..LENGTH(str) LOOP
DBMS_OUTPUT.PUT_LINE('Character at index ' || i || ' is ' || SUBSTR(str, i, 1));
END LOOP;
END;

分享和享受。

关于sql - 如何在 PL/SQL 中访问字符串的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27346622/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com