抱歉交叉发布:我在StackOverflow上发布了一个类似的问题,但我没有得到任何关注(当然是我的错)。
我需要查询Wordpress数据库。
第一个表是wp_posts
: 从这个表中,我需要检索ID
以及post_content
其中post\\u标题为“A”
, “B”
或“C”
. 这当然相当容易:
SELECT ID,post_content FROM `wp_posts`
WHERE post_title IN ("A","B","C") and post_type = "plugin_is_writing_this_record"
post_type
这里是必要的,因为只有特定的Wordpress插件使用该post\\u类型写入记录。
问题是,同一个插件(用于发送表单的插件)替换为对我来说至关重要的0 a信息:post_author
, 那在wp_posts
通常是the id
of the user who created the post, is NOT the id of the user who posted the form, but the id of the user who created the post where the form is located. 我需要检索发布表单的用户的id。
使用ID
中的职位wp_posts
, 我可以得到email
表中用户的wp_postmeta
.
如果以这种方式查询最后一个表:
SELECT * FROM
wp\\U邮差WHERE post_id = 277125
(*)
您可以通过这种方式获取数据(我稍微减少了数据):
meta_id | post_id | meta_key | meta_value
----------------------------------------------------------
3 | 277125 | _from_email | [email protected]
4 | 277125 | _field_your-surname | Surname
5 | 277125 | other_meta_key | otherdata
6 | 277125 | ... | ...
在这一点上,我知道
_from_email
meta值与发布表单的用户的邮件相关(我需要从这个表中检索其他meta\\u键,但这个键对查询和这个问题起作用)。
包含ID
我需要,用户的电子邮件当然是wp_users
, 第三张桌子。
在一次对三个表进行查询时,是否可以检索到所需的数据?我尝试了一些连接,但无法使它们正常工作。非常感谢您的帮助。