SQL Soundx

What is soundx in SQL?

Questions by Shivani Goel   answers by Shivani Goel

Showing Answers 1 - 6 of 6 Answers

This is Soundex Function is useful to select the data according to the sound of
the given value but not compare with the casing of that letters.

For Example:

SQL> SELECT * FROM emp WHERE Soundex(Ename)=Soundex('Analyst');

It select all the Analyst details in emp table in anuy case...

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions