hai...
i trying to using REVERSE() find the given string palindrome or not
but i got answer without using REVERSE() fun find palindrome or not
PLZ any one help me .
create procedure pal
@word varchar(50)
as
begin
if @word=REVERSE(@word)
print 'pal'
else
print 'not pal'
end
go
Thanks
Venkatesh D

Vivek KumarPosted Mar 23, 2016, 5:11 AM
Satish VellankiPosted May 4, 2016, 1:12 AM
Vivek KumarPosted Mar 24, 2016, 2:22 AM
venkatesh duddukuriPosted Mar 24, 2016, 1:20 AM
Ravi PatelPosted Mar 23, 2016, 6:18 AM
Joginder BangerPosted Mar 23, 2016, 4:47 AM
Rajeev PunhaniPosted Mar 23, 2016, 4:31 AM
Hi Venkatesh,
If the above solution is helpful then,accept the answer.