1

我想在下面的 SQL 查询中使用 JOIN 而不是 IN。我不知道该怎么做。

SELECT * FROM shop_orders WHERE 
id IN (SELECT orders_id FROM shop_orders_data WHERE closed='1' /*AND backorder='0'*/  AND   exhibition_id='389' AND 
exhibition_id IN (SELECT id FROM shop_exhibitions WHERE 
country_id IN (SELECT id FROM countries WHERE id='72')) AND in_country = '72' AND 
exhibition_id IN (SELECT id FROM shop_exhibitions WHERE start<=1336946400 AND end>1336600800)) AND 
id IN (SELECT orders_id FROM shop_orders_products WHERE 
products_id IN (SELECT id FROM shop_products WHERE artno='120000' OR name LIKE '%120000%')) AND   created>=1333231200 AND created<1333663200 ORDER BY created DESC

我试过这个:

SELECT 
s.* 
FROM 
shop_orders s 
INNER JOIN shop_orders_data od ON s.id=od.orders_id
INNER JOIN shop_exhibitions se ON od.exhibition_id=se.id 
INNER JOIN countries co ON se.country_id=co.id 
INNER JOIN shop_orders_products sop ON s.id=sop.orders_id 
INNER JOIN shop_products sp 
 ON sop.products_id=sp.id 
WHERE od.closed=1
AND ( sp.artno='120000' or sp.name LIKE '%120000%' )
AND ( od.exhibition_id='389')
AND ( od.in_country = '72')
AND ( se.start <=1336946400)
AND ( se.end >1336600800)
AND ( se.created>=1333231200)
AND ( se.created<1333663200)
ORDER BY `s`.`created` DESC

我这个对吗??

4

2 回答 2

2

看看这是否有效(并研究代码以了解它是如何工作的):

SELECT * 
FROM shop_orders so
JOIN shop_orders_data sod ON (
    (so.id = sod.orders_id)
    AND (sod.closed = '1')
    /*AND (sod.backorder = '0') */
    AND (sod.exhibition_id = '389')
    AND (sod.in_country = '72')
)
JOIN shop_exhibitions se ON (
    (sod.exhibition_id = se.id)
    AND (se.start <= 1336946400)
    AND (se.end > 1336600800)
)
JOIN countries c ON (
    (se.country_id = c.id)
    AND (c.id = '72')
)
JOIN shop_orders_products sop ON (
    (so.id = sop.orders_id)
)
JOIN shop_products sp ON (
    (sop.products_id = sp.id)
    AND ((sp.artno='120000') OR (sp.name LIKE '%120000%'))
)
WHERE (so.created >= 1333231200) AND (so.created < 1333663200)
ORDER BY so.created DESC;
于 2012-06-06T21:22:49.623 回答
1

连接语法的工作方式如下:

SELECT field1,field2,field3
FROM FirstTable 
    JOIN SecondTable ON (FirstTable.PrimaryKey = SecondTable.ForeignKey)
    JOIN ThirdTable ON (FirstTable.PrimaryKey = ThirdTable.ForeignKey)

尝试将此方法应用于您的查询。

于 2012-06-06T21:15:34.790 回答