vote up 2 vote down star

Is their any way to group by all the columns of a table without specifying the column names

like

select * from table group by *

Thanks

flag
what are you trying to accomplish? – MarlonRibunal Apr 29 at 4:45
Can you demonstrate that this isn't a meaningless question? Are you a troll? – le dorfier Apr 29 at 4:48
6  
Why would this be a meaningless question? Seems like something that any beginner sql programmer might ask. – womp Apr 29 at 4:50

5 Answers

vote up 6 vote down

If you are using SqlServer the distinct keyword should work for you. (Not sure about other databases)

declare @t table (a int , b int)

insert into @t (a,b) select 1, 1
insert into @t (a,b) select 1, 2
insert into @t (a,b) select 1, 1

select distinct * from @t

results in

a b
1 1
1 2
link|flag
1  
+1 Why was I so blind not to see your answer before writing mine? – Elijah Apr 29 at 5:48
vote up 5 vote down

No because this fundamentally means that you will not be grouping anything. If you group by all columns (and have a properly defined table w/ a unique index) then SELECT * FROM table is essentially the same thing as SELECT * FROM table GROUP BY *.

link|flag
3  
Of course, if you don't have a unique index, SELECT * FROM table is not the same as SELECT * FROM table GROUP BY *. In that case, you can accomplish this using SELECT DISTINCT * FROM table. – Sören Kuklau Apr 29 at 5:01
1  
Having duplicate rows is a common thing you have to deal when inheriting projects - so I don't think that it is safe to assume someone would never want to remove duplicate rows. – Elijah Apr 29 at 5:43
vote up 3 vote down

The DISTINCT Keyword


I believe what you are trying to do is:

SELECT DISTINCT * FROM MyFooTable;

If you group by all columns, you are just requesting that duplicate data be removed.

For example a table with the following data:

 id |     value      
----+----------------
  1 | foo
  2 | bar
  1 | foo
  3 | something else

If you perform the following query which is essentially the same as SELECT * FROM MyFooTable GROUP BY * if you are assuming * means all columns:

SELECT * FROM MyFooTable GROUP BY id, value;

 id |     value      
----+----------------
  1 | foo
  3 | something else
  2 | bar

It removes all duplicate values, which essentially makes it semantically identical to using the DISTINCT keyword with the exception of the ordering of results. For example:

SELECT DISTINCT * FROM MyFooTable;

 id |     value      
----+----------------
  1 | foo
  2 | bar
  3 | something else
link|flag
vote up 1 vote down

Short answer: no. GROUP BY clauses intrinsically require order to the way they arrange your results. A different order of field groupings would lead to different results.

Specifying a wildcard would leave the statement open to interpretation and unpredictable behaviour.

link|flag
vote up 0 vote down

nope. are you trying to do some aggregation? if so, you could do something like this to get what you need

;with a as
(
     select sum(IntField) as Total
     from Table
     group by CharField
)
select *, a.Total
from Table t
inner join a
on t.Field=a.Field
link|flag

Your Answer

Get an OpenID
or

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