gpt4 book ai didi

php - Mysql选择第二行

转载 作者:IT老高 更新时间:2023-10-28 23:56:14 26 4
gpt4 key购买 nike

我有一个 mysql 问题。


我的网站上有一个新闻栏目,我想显示两个最新的项目。如果我这样做:

SELECT * FROM nieuws ORDER BY id DESC LIMIT 1

它选择最新的项目,现在我想选择倒数第二个项目。

你们知道怎么做吗?

///编辑

现在它不起作用,这是我的代码:(我已经包含连接;))

            $select = mysql_query("SELECT * FROM nieuws ORDER BY id DESC LIMIT 1");
while($row = mysql_fetch_assoc($select)) {
$datum = $row['time'];
$titel = $row['title'];
$bericht = $row['message'];
?>
<div class="entry">

<span class="blue date"><?php echo "$datum"; ?></span>
<h3><?php echo "$titel"; ?></h3>
<p><?php echo "$bericht"; ?></p> <br />
</div><!-- end of entry --> <?php } ?>
<?php
$select2 = mysql_query("SELECT * FROM nieuws ORDER BY id DESC LIMI 1, 1");
while($row2 = mysql_fetch_assoc($select2)) {
$datum = $row2['time'];
$titel = $row2['title'];
$bericht = $row2['message'];
?>
<div class="entry">
<span class="green date"><?php echo "$datum"; ?> </span>
<h3><?php echo "$titel"; ?></h3>
<p><?php echo "$bericht"; ?></p>
</div> <!-- end of entry --> <?php } ?>
</div><!-- end of news -->

最佳答案

SELECT * FROM nieuws ORDER BY id DESC LIMIT 2 - 选择最后 2 项

SELECT * FROM nieuws ORDER BY id DESC LIMIT 1, 1 - 仅选择第二项

关于php - Mysql选择第二行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3280155/

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