| |
GeekInterview.com > Tech FAQs > SQL
| Print | |
Question: SQL Soundx
Answer: What is soundx in SQL? |
| August 08, 2009 02:24:32 |
#2 |
| sure_prince |
Member Since: June 2009 Total Comments: 3 |
RE: SQL Soundx |
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... |
| |
Back To Question | |