我需要帮助才能在数据库中查找文本模式。 我用C#开发了一个程序。我需要搜索用户输入的文本模式,该模式将在数据库中搜索。问题在于用户输入不需要匹配数据库中的字符串,而只是类似于它。下面的例子说明了这一点:
e.g。数据库字符串是“我需要在数据库中查找文本”
用户输入是“查找数据库需要”
我希望你明白 请帮我在数据库字符串中找到任何模式。 提前谢谢!
答案 0 :(得分:0)
生成语句的方法:
public static string WildFindStatement( String search )
{
//REPLACE THE STRING WITH SQL INJECTION SAFE PARAMTERS
//THATS ONLY FOR CONCEPT SHOWING (or at least a string buildeR)
string sql = "select * from bla where 1=1 ";
string [] sa = search.Split( new char[] {' '} );
foreach ( var s in sa )
{
sql += ( " AND columBla LIKE '%" + s + "%'");
}
return sql;
}
致电:
string s = WildFindStatement( "the wookies you must find" );
结果:
select * from bla where 1=1
AND columBla LIKE '%the%'
AND columBla LIKE '%wookies%'
AND columBla LIKE '%you%'
AND columBla LIKE '%must%'
AND columBla LIKE '%find%'