MS SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDatabasesMS SQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here
  #1  
Old January 18th, 2004, 04:54 PM
huym01 huym01 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2004
Location: Ottawa
Posts: 5 huym01 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
help: Sub or Nested Query into 1 Query

Hi,

I am having difficulty in figureing out how to create ONE query from nested querries. Is there one query that is equivaliant to Query #3?


Here is the 3 querries i used

QUERY x1

SELECT a.Col1 , a.Col2, a.Col3, Count(a.Col) AS CountA
FROM a
GROUP BY a.Col1, a.Col2, a.Col3
ORDER BY a.Col1;



QUERY x2:
SELECT a.Col1 , Count(a.Col) AS CountB
FROM a
GROUP BY a.Col1
ORDER BY a.Col1;


QUERY #3:

SELECT x1.Col1, x1.Col2, x1.Col3, x1.CountX, x2.CountB
FROM x1 INNER JOIN x2 ON x1.col1 = x2.col1
WHERE (CountA<>CountB)


Thanks!

Reply With Quote
  #2  
Old January 18th, 2004, 05:44 PM
r937's Avatar
r937 r937 is offline
SQL Consultant
Dev Shed God 24th Plane (16500 - 16999 posts)
 
Join Date: Feb 2003
Location: Toronto Canada
Posts: 16,745 r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level)r937 User rank is Lieutenant General (80000 - 90000 Reputation Level) 
Time spent in forums: 1 Month 3 Weeks 2 Days 21 h 39 m 51 sec
Reputation Power: 870
Re: help: Sub or Nested Query into 1 Query

there are actually several ways to do is

the easiest is just a straightforward substitution of X1 and X2 into X3 --
Code:
select x1.col1
     , x1.col2
     , x1.col3
     , x1.counta
     , x2.countb
  from (
       select col1 
            , col2
            , col3
            , count(col) as counta
         from a
       group
           by col1 
            , col2
            , col3
       ) as x1 
inner
  join ( 
       select col1 
            , count(col) as countb
         from a
       group
           by col1 
       ) as x2
    on x1.col1 = x2.col1
 where counta <> countb
__________________
r937.com | rudy.ca

Reply With Quote
  #3  
Old January 18th, 2004, 06:27 PM
huym01 huym01 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2004
Location: Ottawa
Posts: 5 huym01 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
THANKS! help: Sub or Nested Query into 1 Query

Hi,

Thanks for the quick response.

I was trying to substitute but forgot to use the AS;

from (...) AS x1


Marty

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMS SQL Development > help: Sub or Nested Query into 1 Query


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five "checkpoints" for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway