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
|
|
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 |
||||||||
|
|
|
If you are using SqlServer the distinct keyword should work for you. (Not sure about other databases)
results in
|
||||
|
|
|
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 *. |
||||||||
|
|
|
The DISTINCT KeywordI believe what you are trying to do is:
If you group by all columns, you are just requesting that duplicate data be removed. For example a table with the following data:
If you perform the following query which is essentially the same as
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:
|
|||
|
|
|
|
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. |
||
|
|
|
|
nope. are you trying to do some aggregation? if so, you could do something like this to get what you need
|
||
|
|