Joomla 2.5 を使用しています。MYSQL データベースを使用しています。job_field
次の列を持つテーブルがあります。
cat_id | location_id
-----------------------
1,4 | 66,70
別のテーブルと比較する必要がありますjob_value
cat_id | location_id | name
--------------------------------
1 | 70 | Atul
4 | 70,80 | Amit
4 | 80,66 | Amol
1 | 66 | Pritam
3 | 70 | Rahul
2 | 66,90 | Ajit
1 | 74 | Raju
4 | 65,22 | Manoj
cat_id
出力を比較しlocation_id
、最初のテーブルの列job_details
を 2 番目のテーブルのjob_value
列cat_id
と比較したいlocation_id
。
job_details
そして、1 番目のテーブル ( ) の各値、つまりlocation_id
列の値 (66、70) を、2 番目のテーブル ( job_value
)の列で個別にチェックしlocation_id
ます。出力配列を次のように取得します
Array (
1 70 Atul
4 70,80 Amit
4 80,66 Amol
1 66 Pritam
)