仅从article_tbl 中检索主键列号并进行检查?

发布于 2024-10-21 14:24:25 字数 321 浏览 3 评论 0原文

想要弄清楚如何更好地从数据库检索数据而不消耗性能。

规划如下:

  1. 从文章表中选择id
  2. 将 id 存储在 List中arr;
  3. 找出最后一篇文章的 ID。 int x = arr.Count()
  4. 从article_tbl中选择*,其中id = x;运行查询。
  5. 将其发布到您的页面上。

我的计划对吗?从数据库检索数据的更好方法是什么?

多谢

Would like to figure out how to better retrieve data from database without performance cost.

Plan as follows:

  1. Select id from article table;
  2. store ids in List<int> arr;
  3. find out last article id. int x = arr.Count()
  4. Select * from article_tbl where id = x; Run query.
  5. Post it on you page.

Am I planning right? What is better way of retrieving data from database?

Thanks a lot

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

还在原地等你 2024-10-28 14:24:25

尝试这样的事情 - 您可以将其称为“临时”或将其包装在存储过程中:

-- get the "latest" ID from the "Article" latest
-- but you need to define *latest* by WHAT criteria?? A date?? The ID itself??
DECLARE @LastID INT

SELECT TOP 1 @LastID = ID
FROM dbo.Article
ORDER BY ..........  -- order by date? id? what??

-- get the detail data for that ID from the "Article_tbl"
SELECT (list of columns)
FROM dbo.Article_tbl 
WHERE ID = @LastID

Try something like this - you can call it "ad-hoc" or wrap it up in a stored procedure:

-- get the "latest" ID from the "Article" latest
-- but you need to define *latest* by WHAT criteria?? A date?? The ID itself??
DECLARE @LastID INT

SELECT TOP 1 @LastID = ID
FROM dbo.Article
ORDER BY ..........  -- order by date? id? what??

-- get the detail data for that ID from the "Article_tbl"
SELECT (list of columns)
FROM dbo.Article_tbl 
WHERE ID = @LastID
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文