从一个结果集中的多个表中选择 count(*)
我如何为具有其他字段的 30 个表选择 count(*)。
我想应用限制,例如时间限制。我有诸如 statemaster
、dealermaster
、businessdetail
之类的表。
我想要相应的 statecode
、statename
的结果。
我想要的输出如下:-
statecode statename count(*) for dealermaster count(*) for business details 01 ca 25 20 01 au 30 35
statecode,statemaster 表中的 statename
How I can select count(*) for 30 tables with other fields.
I want to apply restriction like time constraint. I have tables like statemaster
, dealermaster
, businessdetail
.
I want results for respective statecode
, statename
.
i want output like:-
statecode statename count(*) for dealermaster count(*) for business details 01 ca 25 20 01 au 30 35
statecode, statename from statemaster table
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然这听起来像是一个奇怪的请求,但无论如何我都会提供一个答案,看看你如何处理它。
您应该能够使用一堆相关子查询来获取这些结果,如......
Whilst this sounds like an odd request, I'll provide an answer anyway and see how you get along with it.
You should be able to use a bunch of correlated subqueries to obtain these results, as in...