with temp as (select '12456' as str from dual)
select substr(str,level,1)
from temp
connect by level <= length(str);
परिणाम:
1
2
4
5
6
with temp as (select '12456' as str from dual)
select substr(str,level,1)
from temp
connect by level <= length(str);
परिणाम:
1
2
4
5
6
ओरेकल में एटीएएन () फ़ंक्शन
PL/SQL:संग्रहीत कार्यविधि में IN पैरामीटर का उपयोग करके चयन कथन को फिर से लिखें
Oracle डिकोड फ़ंक्शन विभिन्न स्वरूपों के साथ परिणाम देता है
एक संग्रहित प्रक्रिया के भीतर DROP TABLE आदि जैसे कमांड का उपयोग कैसे करें
मैं Oracle में sys के स्वामित्व वाली तालिकाएँ कैसे बनाऊँ?