vote up 3 vote down star

Hi,

I've got an MS access database and I would need to create an SQL query that allows me to select all the not distinct entries in one column while still keeping all the values.

In this case more than ever an example is worth thousands of words:

Table:

A B C
1 x q
2 y w
3 y e
4 z r
5 z t
6 z y

SQL magic

Result:

B C
y w
y e
z r
z t
z y

Basically it removes all unique values of column B but keeps the multiple rows of the data kept. I can "group by b" and then "count>1" to get the not distinct but the result will only list one row of B not the 2 or more that I need.

Any help?

Thanks.

flag

4 Answers

vote up 4 vote down check
Select B, C
From Table
Where B In
    (Select B From Table
     Group By B
     Having COunt(*) > 1)
link|flag
vote up 1 vote down
select 
  * 
from 
  my_table t1, 
  my_table t2
where 
  t1.B = t2.B
and
  t1.C != t2.C

-- apparently you need to use <> instead of != in Access
-- Thanks, Dave!

Something like that?

link|flag
This is close, but you need to use <> instead of != in Access. – Dave DuPlantis Nov 6 '08 at 17:58
Um, why would you offer an answer about Jet SQL without testing the SQL in Access or some form of Jet? Why post an answer that you don't know will work (as you'd have found out if you'd spent the 3 seconds it takes to paste the SQL with != into the Access QBE grid)? – David W. Fenton Nov 7 '08 at 4:18
Because I don't use Access and I don't have an installation available to me? The point of my posting was that you can use the same table twice in normal SQL (probably doesn't work in Access either, for all I know). – a2800276 Nov 7 '08 at 10:08
vote up 1 vote down

join the unique values of B you determined with group by b and count > 1 back to the original table to retrieve the C values from the table.

link|flag
vote up 5 vote down

Another way of returning the results you want would be this:

select *
from
    my_table
where 
    B in 
    (select B from my_table group by B having count(*) > 1)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.