hi....
i have a table xyz.
id --------- desc
1 ---------- EE%DA
2 ---------- A#D
In the table value... i have the % symbole in the value itself, but
i want to search like this ....
select * from xyz where desc like '%E%D%';
When i run the above query.. i got the empty result set... but i have the value in the table xyz. What is the problem in that query? Can u any one solve this problem? How to write the query to search like that....
Thanks & Regards,
S.Ashokkumar.
i have a table xyz.
id --------- desc
1 ---------- EE%DA
2 ---------- A#D
In the table value... i have the % symbole in the value itself, but
i want to search like this ....
select * from xyz where desc like '%E%D%';
When i run the above query.. i got the empty result set... but i have the value in the table xyz. What is the problem in that query? Can u any one solve this problem? How to write the query to search like that....
Thanks & Regards,
S.Ashokkumar.
Comment