ORACLE PL/SQL INTERVIEW :PALINDROME NUMBER PROGRAM

preview_player
Показать описание
This video tutorial demonstrates on the Oracle PL/SQL interview question of writing a program for finding whether a number or string is palindrome number or string or not, the video explains a very simple and generic approach that can be used to solve this question.

Рекомендации по теме
Комментарии
Автор

declare
word varchar2(20) default '75holloh57';
MSS VARCHAR2(20);
begin
for i in 1..length(word) loop
IF substr(word, i, 1) <> substr(word, length(word)-i+1, 1)
then
MSS := 'no';
EXIT;
ELSE
MSS:= 'YES';
END IF;
end loop;
dbms_output.put_line(mss);
end;

--I really like ur series of videos, the only issue is the audio but still good, here is another alternative :)

renevillalta
Автор

I want pl sql palindrome program in telugu immediately

dheekondalakshmaiahlakshma
welcome to shbcf.ru