在这里,我为此编写了查询。查询是正确的,但不知道为什么它没有回显任何内容:
$sql3= mysqli_query($con,"select post from facebook_posts where p_id > (select MAX(p_id) - 5 from facebook_posts);");
while ($row = @mysql_fetch_array($sql3))
{
echo $row['post'];
echo '<br/>';
}
表已有数据。当我在 mysql 中测试查询时,它给出了 5 行内容;