0

会社、顧客、およびコメントと呼ばれる3つのテーブルがあります。最初に会社を追加し、次に顧客が顧客テーブルに追加され、最後に顧客がコメントテーブルにコメントを追加します。

会社テーブルの構造は次のとおりです。

id      company     type        address
1        abc       running      xyz
2        def       old          asd

顧客テーブルの構造は次のとおりです。

cid company  customername  location
1     1       test           delhi
2     2       test1         noida

コメントテーブルの構造は次のとおりです。

id  company     customer     comments
1         1          test       testcomments
2         2          test1       test1comments

今、顧客名、会社名、場所で顧客テーブルを検索したいので、これを試しましたが、検索でコメントの値を取得できません。どうすればそれを達成できますか。

会社名と場所の検索クエリは次のとおりです。

$sql = mysql_query("Select * from customers AS cust INNER JOIN company AS comp ON cust.company = comp.id where cust.name like '%$term%' or cust.location like '%$term%' or comp.company like '%$term%'");
4

2 に答える 2