blob: ac96695c1f55ae0b901dbdac3798d40d78a2feb2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* syntax version 1 */
use plato;
select distinct * from Input2 order by key, subkey;
select distinct * without subkey from Input2 order by key, value;
select distinct a.*, TableName() as tn, without subkey from Input2 as a order by key, value;
|