对多个来源的数据进行排序和限制
拥有多个数据源,如何从这些源中选择前 X 条最新记录?
示例:我有博客文章、评论、论坛帖子,它们存储在不同的表中(并且可以存储在不同的数据库中)。我需要打印添加到网站的最新“记录”
Having more than one datasource how can select top X latest records from these sources?
Exampe: I have blogposts, comments, forumposts which are stored in different tables (and could be stored in different databases). I need to print out latest 'records' added to the site
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它们位于一个数据库中,您可能正在寻找 SQL 联合语句。
如果它们位于不同的数据库中,您可能正在寻找编程解决方案。
If they are in one database, you're probably looking for an SQL union statement.
If they are in different databases, you're probably looking at a programmatic solution.