How can I search the record if I the first name and last name is combined together?http://forums.asp.net/t/1809497.aspx/1?How+can+I+search+the+record+if+I+the+first+name+and+last+name+is+combined+together+Thu, 31 May 2012 15:00:07 -040018094975006234http://forums.asp.net/p/1809497/5006234.aspx/1?How+can+I+search+the+record+if+I+the+first+name+and+last+name+is+combined+together+How can I search the record if I the first name and last name is combined together? <p>Hi,</p> <p>There are two fields in the table which is FirstName and LastName. For example:</p> <p>FirstName&nbsp;&nbsp;&nbsp;&nbsp; LastName</p> <p>Michael&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Jorden</p> <p></p> <p>How can I find this record if user inputs the search criteria as &quot;Michael Jorden&quot;? Thanks in advance</p> 2012-05-31T14:52:30-04:005006242http://forums.asp.net/p/1809497/5006242.aspx/1?Re+How+can+I+search+the+record+if+I+the+first+name+and+last+name+is+combined+together+Re: How can I search the record if I the first name and last name is combined together? <p>SELECT * FROM Table WHERE FirstName &#43; LastName LIKE '%<span>Michael Jorden</span>%'.</p> <p>But this will have some performance issue.&nbsp;</p> 2012-05-31T15:00:07-04:00