Jan 20, 2004 #1 100dtl Programmer Aug 18, 2003 313 GB Hi all, I want to get data back dependant on a row have two words ie: 'Under Research' so i want the get the column data back if there is a space again this could change to 'X21 X25 X703'
Hi all, I want to get data back dependant on a row have two words ie: 'Under Research' so i want the get the column data back if there is a space again this could change to 'X21 X25 X703'
Jan 20, 2004 #2 mrdenny Programmer May 27, 2002 11,595 If you want any record that has a space in it then Code: select * from tablename where columnname like '% %' See select in BOL. Denny --Anything is possible. All it takes is a little research. (Me) Upvote 0 Downvote
If you want any record that has a space in it then Code: select * from tablename where columnname like '% %' See select in BOL. Denny --Anything is possible. All it takes is a little research. (Me)