仅从article_tbl 中检索主键列号并进行检查?
想要弄清楚如何更好地从数据库检索数据而不消耗性能。
规划如下:
从文章表中选择id
;- 将 id 存储在
List
中arr; - 找出最后一篇文章的 ID。
int x = arr.Count()
从article_tbl中选择*,其中id = x
;运行查询。- 将其发布到您的页面上。
我的计划对吗?从数据库检索数据的更好方法是什么?
多谢
Would like to figure out how to better retrieve data from database without performance cost.
Plan as follows:
Select id from article table
;- store ids in
List<int> arr;
- find out last article id.
int x = arr.Count()
Select * from article_tbl where id = x
; Run query.- Post it on you page.
Am I planning right? What is better way of retrieving data from database?
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这样的事情 - 您可以将其称为“临时”或将其包装在存储过程中:
Try something like this - you can call it "ad-hoc" or wrap it up in a stored procedure: