आपको अपने वाक्य को शब्दों में तोड़ना होगा यह जांचने के लिए कि क्या आपकी तालिका में इनमें से कोई भी शब्द है in
का उपयोग करके . यदि आप PHP का उपयोग करते हैं, तो आप ऐसा कुछ कर सकते हैं:
$expression="is there any blacklisted word here";
$words=str_word_count($expression, 1);
$words=implode(",",$words);
$sql=mysql_query("select word from table_black_list_word where word in ($words)",$db_conn);
if($row=mysql_fetch_array($sql)){
//case your expression do have a blacklisted word
}else{
//expression does not contains any blacklisted word
}