duangai9678 2014-06-30 07:09
浏览 46
已采纳

PHP MYSQL搜索字符串无处不在

Is it possible to search a string in table without specifing column?

$string = 'hello';

$sql = mysql_query("SELECT * FROM table WHERE all_columns LIKE '%,$string,%' ");

and i would like to get one response p.e if there would be two columns in one row which containts same or similar content, but this is not important, i can handle it.

// MY IDEA, NOT SO FAST BUT MIGHT WORK

    $sql = mysql_query("SELECT * FROM particular_table LIMIT = 1");
    $data = mysql_fetch_array($sql);

    $limit = count($data);
    $where_condition = 'WHERE published = 1 AND (';

    $index = 1;
    foreach($data as $key=>$val){
          if($index==$limit){
              $where_condition .= ' '.$key.' LIKE %,'.$string.',%'; 
          } else {
              $where_condition .= ' '.$key.' LIKE %,'.$string.',% OR'; 
          }
          $index++;       
    }
    $where_condition .= ')';

    $get = mysql_query("SELECT * FROM particular_table $where_condition"); 
    $res = mysql_fetch_array($get);

It can be stupid and unnecessary so give me your opintion please

  • 写回答

1条回答 默认 最新

  • douba4824 2014-06-30 07:16
    关注

    Here's a solution combined with some PHP to search all fields in a specific table.

    include("db_con.php");
    //search all fields
    $searchphrase = "banan";
    $table = "apa303";
    $sql_search = "select * from ".$table." where ";
    $sql_search_fields = Array();
    $sql = "SHOW COLUMNS FROM ".$table;
    $rs = mysql_query($sql);
        while($r = mysql_fetch_array($rs)){
            $colum = $r[0];
            $sql_search_fields[] = $colum." like('%".$searchphrase."%')";
        }
    
    $sql_search .= implode(" OR ", $sql_search_fields);
    $rs2 = mysql_query($sql_search);
    $out = mysql_num_rows($rs2)."
    ";
    echo "Number of search hits in $table " . $out;
    

    Now adjust the query as you want...

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 Web.config连不上数据库
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流
  • ¥15 Rstudio 保存代码闪退
  • ¥20 win系统的PYQT程序生成的数据如何放入云服务器阿里云window版?
  • ¥50 invest生境质量模块