如何在 JDBC 中执行两个查询

发布于 2024-10-19 19:17:47 字数 119 浏览 2 评论 0原文

我对 android 很陌生,我尝试将 JDBC 连接到我的应用程序并且它工作正常。它以列表视图格式显示数据库内容。现在我想显示计数,因为我想同时执行两个查询,是否有可能做到这一点。请让我知道如何在 JDBC 中执行两个查询

I am fresh to android, and i tried to connect JDBC to my application and its working properly. it displays database content in listview format. and now I want to display the number of counts, for that i want to execute two queries at the same time, is there any possibility to do this. please let me know how to execute two quires in JDBC

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

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

发布评论

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

评论(2

我的奇迹 2024-10-26 19:17:47

大多数时候,如果您需要数据库中的不止一项内容,您可以将它们组合成一个查询。

例如,如果您想要员工列表以及员工总数,则可以使用如下查询:

SELECT emp.name,
       emp.salary,
       COUNT(*) OVER () AS total_count
FROM   employees emp;

Most of the time, if you need more than one thing from the database, you can combine them into one query.

For example, if you want a list of employees, as well as a total count of employees, you could use a query like this:

SELECT emp.name,
       emp.salary,
       COUNT(*) OVER () AS total_count
FROM   employees emp;
完美的未来在梦里 2024-10-26 19:17:47

同时进行两个查询?或者您想使用一个查询的结果作为下一个查询的输入?如果是这种情况,请使用子查询

two queries at the same time? or do you want to use the result of one query as the input for the next one? if thats the case, use subqueries

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文