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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里