2

这是我的查询:

SELECT ID FROM wp_posts 
WHERE post_type = 'vreb_property'
AND post_status = 'publish' 
ORDER BY post_modified DESC

在这种情况下,我需要修改我的查询以包含WHERE post_parent = ID...所以我需要使用正在选择的 ID。

SELECT ID FROM wp_posts WHERE post_type = 'vreb_property' ... and also select records where 'post_parent' = ID

因为有些记录是post_type我需要抓取的“附件”。

我能不能只看几眼来澄清这个请求的有效性?谢谢。

4

2 回答 2

0

你在找OR吗?

SELECT ID FROM wp_posts 
WHERE (post_type = 'vreb_property'
       AND post_status = 'publish')
   OR (post_type = 'attachment'
       AND post_parent = ID)
ORDER BY post_modified DESC

使用括号,您可以根据您的特定需求对其进行调整,因为这并不完全清楚。

于 2012-12-20T00:41:15.380 回答
-1

我同意 jeroen 的 sql ,诀窍在括号中。

于 2012-12-20T02:12:42.593 回答