2013-05-28 2 views
-2

Я хочу искать данные в разных таблицах базы данных?Как мне искать данные в разных таблицах базы данных?

Например, я вводил слово, подобное «demo», onclick 'search', а также показывало, что данные относятся к слову «demo» из таблицы «product» и «article».

Итак, как мне написать заявление sql?

Кстати, я использую PHP и Mysql.

+0

Вы даже искали что-нибудь первым? что-то 'LIKE'? –

+0

, по крайней мере, вам нужно попробовать один раз и показать код .. –

+3

не только коды, но и структура таблицы. –

ответ

0

Вы можете начать с запроса наподобие Его не применимо для вас, так как вы не указали какую-либо информацию о вашей структуре таблицы, столбцах. Так что ниже только мое предположение

SELECT * FROM article a 
INNER JOIN product p 
ON p.id = a.product_id 
WHERE 
a.article LIKE "%demo%" 
OR 
p.title LIKE "%demo%"; 

Вы можете попробовать UNION ALL

SELECT * FROM article a 
a.article LIKE "%demo%" 

UNION ALL 

SELECT * FROM product p 
p.title LIKE "%demo%"; 

Но будьте уверены, что они должны иметь одинаковое число столбцов. Подробнее о UNION here

Ниже немного код, который я дал, чтобы начать и узнать, как она работает

<?php 
    mysql_connect("localhost", "root", "") or die("Error connecting to database: ".mysql_error()); 
    /* 
     localhost - it's location of the mysql server, usually localhost 
     root - your username 
     third is your password 

     if connection fails it will stop loading the page and display an error 
    */ 

    mysql_select_db("your_database") or die(mysql_error()); 
    /* your_database is the name of database we've created */ 
?> 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
    <title>Search results</title> 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
    <link rel="stylesheet" type="text/css" href="style.css"/> 
</head> 
<body> 
<?php 
    $query = $_GET['query']; 
    // gets value sent over search form and in your case it is demo 

    $min_length = 3; 
    // you can set minimum length of the query if you want 

    if(strlen($query) >= $min_length){ // if query length is more or equal minimum length then 

     $query = htmlspecialchars($query); 
     // changes characters used in html to their equivalents, for example: < to &gt; 

     $query = mysql_real_escape_string($query); 
     // makes sure nobody uses SQL injection 

     $raw_results = mysql_query("SELECT * FROM article a INNER JOIN product p 
        ON p.id = a.product_id WHERE (`title` LIKE '%".$query."%') OR (`text` LIKE '%".$query."%')") or die(mysql_error()); 

     // * means that it selects all fields, you can also write: `id`, `title`, `text` 
     // articles is the name of our table 

     // '%$query%' is what we're looking for, % means anything, for example if $query is Hello 
     // it will match "demo", "here demo", "demohere", if you want exact match use `title`='$query' 
     // or if you want to match just full word so "gogohello" is out use '% $query %' ...OR ... '$query %' ... OR ... '% $query' 

     if(mysql_num_rows($raw_results) > 0){ // if one or more rows are returned do following 

      while($results = mysql_fetch_array($raw_results)){ 
      // $results = mysql_fetch_array($raw_results) puts data from database into array, while it's valid it does the loop 

       echo "<p><h3>".$results['title']."</h3>".$results['text']."</p>"; 
       // posts results gotten from database(title and text) you can also show id ($results['id']) 
      } 

     } 
     else{ // if there is no matching rows do following 
      echo "No results"; 
     } 

    } 
    else{ // if query length is less than minimum 
     echo "Minimum length is ".$min_length; 
    } 
?> 
</body> 
</html> 
+0

Спасибо за ответ. Моя реальная проблема заключается в том, что таблица «продукт» и таблица «статья» не имеют связи с внешним ключом, они идеальны. – user2089630

+0

Итак, ваша проблема отличается от того, что вы просили выше. Это простая проблема плохого проектирования базы данных. – Yogus

+0

@ user2089630 Прочитайте выше с помощью концепции UNION. Примите ответ и проголосуйте, если он сработает для вас :) – Yogus

Смежные вопросы