gpt4 book ai didi

wordpress - 具有多个条件的 MYSQL 语句 INNER JOIN

转载 作者:行者123 更新时间:2023-11-29 07:11:36 25 4
gpt4 key购买 nike

我有一个 WP 站点,在我的 WP 安装之外还有一些 php 页面,我需要查询支持我的 WP 站点的数据库。我有一个有效的查询,但它没有显示我真正需要的输出。

这是两个表 wp_posts 和 wp_postmeta

wp_posts
ID
post_author
post_date
post_date_gmt
post_content
post_title
post_excerpt
post_status
comment_status
pint_status
post_password
post_name
to_ping
pinged
post_modified
post_modified_gmt
post_content_filtered
post_parent
guid
menu_order
post_type
post_mine_type
comment_count

wp_postmeta
meta_id
post_id
meta_key
meta_value

这些是显示发布帖子的查询:

$query = "SELECT post_title, post_name FROM wp_posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 5";

这些是使用 meta_key= '_wp_attached_file' 显示的查询

$query ="SELECT post.ID, post.post_title, post.post_excerpt, post.post_content, meta.meta_value FROM wp_posts AS post INNER JOIN wp_postmeta AS meta ON meta.post_id = post.id AND meta.meta_key = '_wp_attached_file' ";

我想要的是结合这两个查询来显示 post_status ='publish' 和 meta_key = '_wp_attached_file'

这是我的查询示例,但没有显示值

<?php
$query ="SELECT post.ID, post.post_title, post.post_excerpt, post.post_content, meta.meta_value FROM wp_posts AS post INNER JOIN wp_postmeta AS meta ON meta.post_id = post.id AND meta.meta_key = '_wp_attached_file' WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 5 ";

$result = mysql_query($query,$link);
if(mysql_num_rows($result)) {
while($post = mysql_fetch_object($result)) {
echo "$post->meta_value";
echo "$post->post_title";
echo "$post->post_content";
}
}
?>

非常感谢你们......

另一个问题是它只显示 1 个帖子而不是最新的帖子

这是我更新的代码

<?php
$con = mysql_connect("localhost", "root", "");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

$db_selected = mysql_select_db("wp_db",$con);
$sql = "SELECT
posts.ID,
posts.post_title AS title,
posts.post_content AS content,
files.meta_value AS filepath
FROM
wp_posts posts
INNER JOIN wp_posts attachments ON posts.ID = attachments.post_parent
INNER JOIN wp_postmeta files ON attachments.ID = files.post_id
WHERE 1 = 1
AND files.meta_key = '_wp_attached_file'";
$result = mysql_query($sql,$con);

while ($row = mysql_fetch_object($result))
{
echo $row->title . "<br />";
}

mysql_close($con);
?>

我的代码有问题吗..谢谢你的帮助,非常感谢..

最佳答案

你好 @idontknowhow:

您的问题似乎是关于 WordPress 数据库架构的无效假设。 WordPress 将其附件存储为 post_type='attachment'。运行此查询以了解我的意思:

SELECT 
wp_posts.ID,
wp_posts.post_type
FROM
wp_posts
INNER JOIN wp_postmeta ON wp_posts.ID = wp_postmeta.post_id
WHERE 1 = 1
AND wp_postmeta.meta_key = '_wp_attached_file'

wp_posts 中带有 post_type='attachment' 的记录通常会有 'post_status='inherit' 和 'post_parent' 等于您帖子的 ID 字段值。

现在我没有完全按照您想要完成的目标进行操作。你提到了你遇到的技术问题,但没有提到你试图达到的实际结果。在不了解后者的情况下,我很难确认我是否理解您的问题。所以我可能误解了你在找什么,但我认为这就是你想要的:

SELECT 
posts.ID,
posts.post_title AS title,
posts.post_content AS content,
files.meta_value AS filepath
FROM
wp_posts posts
INNER JOIN wp_posts attachments ON posts.ID = attachments.post_parent
INNER JOIN wp_postmeta files ON attachments.ID = files.post_id
WHERE 1 = 1
AND files.meta_key = '_wp_attached_file'

但是在 WordPress 世界中,使用直接 SQL 是不受欢迎的;如果 WordPress API 提供了您需要的功能,那么使用它是首选。这件事情是由很多原因导致的;即,如果 future 的 WordPress 版本更改了数据库架构,并且因为 WordPress 会进行大量数据缓存,所以在日常使用中不使用直接 SQL 而是使用 WordPress API 可能会更高效。

但是,使用 WordPress API 来解决您的问题并不是 100% 直接的,尽管可以做到。如果您想了解我如何建议您在 StackOverflow 的姊妹网站上询问 WordPress Answers许多 WordPress 爱好者可以在哪里提供帮助?

希望这对您有所帮助。

-迈克

附言我发现很多关于在 StackOverflow 上查询 WordPress 数据库的问题让人们试图回答这些问题,即使他们缺乏 WordPress 数据库模式的知识,更重要的是,不了解 WordPress API。这里的人非常了解 MySQL,但通常对 WordPress 的了解不够深,无法对与 WordPress 相关的问题给出正确的答案。 WordPress Answers可能是询问有关 WordPress 问题的更好的地方。

关于wordpress - 具有多个条件的 MYSQL 语句 INNER JOIN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4140442/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com