Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
do_singh
Starting Member
2 Posts |
Posted - 2008-05-09 : 06:34:57
|
| I'm having problems constructing an SQL statement to find records from a user entered string searching record. a record consists of a comma separated string. for example:user entered string: chartsrecord: bars, graphs, chartsi've tried:SELECT MI_FILENAME, MI_EXT, MI_KEYWORDSFROM MEDIA_ITEMSWHERE (MI_KEYWORDS IN ('bars'))Could u offer any assistance please |
|
|
elancaster
A very urgent SQL Yakette
1208 Posts |
Posted - 2008-05-09 : 06:48:32
|
| LIKE ?i.e....SELECT MI_FILENAME, MI_EXT, MI_KEYWORDSFROM MEDIA_ITEMSWHERE MI_KEYWORDS like '%bars%'Em |
 |
|
|
do_singh
Starting Member
2 Posts |
Posted - 2008-05-09 : 07:03:32
|
| cheers matey |
 |
|
|
|
|
|