aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/insert_monotonic/keep_unique.sql
blob: 9721c1b113394b8afa392f9b51c73a89ff8d17b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
/* ytfile can not */
/* dqfile can not */
USE plato;

INSERT INTO Output WITH MONOTONIC_KEYS
SELECT key, subkey, some(value) as value
FROM Input
GROUP BY key, subkey
ORDER BY key, subkey;