我正在尝试使用 Zend 将数据从提要插入数据库,并在表中添加一个列 date_updated ,以便每当提要中的文章更新时,该列也会更新。但问题是,第一篇文章是先插入的,然后再插入其他文章。因此,当我尝试根据 date_updated DESC 选择前 10 篇文章时,最后插入的文章会排在最前面,如果我使用 ASC,那么较旧的文章会被选中。请建议我如何进行。我正在写的查询是:
$sql = "INSERT INTO news_article
(original_article_id, headline,summary, keywords, link, section, topic, date_published, date_updated, content, source_id)
VALUES (?,?,?,?,?,?,?,?,?,?,?)
ON DUPLICATE KEY UPDATE
original_article_id = ?,
headline = ?,
summary = ?,
keywords = ?,
link = ?,
section = ?,
topic = ?,
date_published = ?,
date_updated = ?,
content = ?,
source_id = ?";
$values = array(
"original_article_id"=>$id,
"headline"=>$item->title,
"summary"=>$summary,
"keywords"=>$keywords,
"link"=>$item->link,
"section"=>"property",
"topic"=>"property",
"date_published"=>$formattedPubDate,
"date_updated"=>$currentDate,
"content"=>$data,
"source_id"=>"3"
);
$result = $db->query(
$sql,
array_merge(array_values($values), array_values($values))
);
然后我使用
SELECT * FROM news_article ORDER BY date_updated DESC LIMIT 10