Hi All,
I have a table and it contains fields like
FIRST_NAME,LAST_NAME,SAL,DEPTNO.
FIRST_NAME LAST_NAME SAL DEPTNO
------------------------------------------
Thomas Mathew 900 90
MAthew robinson 980 80
Thomas Marteen 890 80
Mathew Thomas 780 45
...
...
[/code]
requirement is , I want to "search name"
if I gave Search_Name="Thomas" it should display Thomas related records.
Search_Name="Mathew" it should display Mathew related fields.
Please let me know how to write a Procedure/Function for this req.
Thanks in Adv.