从数据库表中选择特定字段

时间:2012-08-06 12:23:30

标签: php mysql drupal-6

我有这个代码,它从数据库中选择内容类型,然后根据内容类型构建其视图。

$q = db_query('SELECT n.nid, n.title, r.body, f.filename
FROM {node} n
INNER JOIN {node_revisions} r ON n.vid = r.vid
INNER JOIN {content_type_brands} p ON p.nid = n.nid
INNER JOIN {files} f ON f.fid = p.field_deyat_pic_fid
WHERE n.type =  "brands"');

但它显示每种内容类型,当我需要使此代码仅显示特定的内容类型时。我该怎么做只显示选定的内容类型?

1 个答案:

答案 0 :(得分:3)

n条款中将p更改为WHERE

SELECT  n.nid, n.title, r.body, f.filename
FROM    {node} n
            INNER JOIN {node_revisions} r 
                ON n.vid = r.vid
            INNER JOIN {content_type_brands} p 
                ON p.nid = n.nid
            INNER JOIN {files} f 
                ON f.fid = p.field_deyat_pic_fid
// WHERE    p.type =  'brands'
WHERE p.type IN ('brand1','brand1','brand1')