diff options
author | unknown <igor@rurik.mysql.com> | 2005-08-19 22:06:43 -0700 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2005-08-19 22:06:43 -0700 |
commit | 07e1b729dd9f6153264334c4b29a99e8daa76d2d (patch) | |
tree | 3be692ecc809431d2bce15cdfcac4330188feaf8 /mysql-test/r/distinct.result | |
parent | 4c17cdc108af672a3ac57fb1289ced059f5c76ea (diff) | |
parent | 3a143f488805f81f2b9447cde73497d19a720a35 (diff) | |
download | mariadb-git-07e1b729dd9f6153264334c4b29a99e8daa76d2d.tar.gz |
Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.0
into rurik.mysql.com:/home/igor/mysql-5.0
Diffstat (limited to 'mysql-test/r/distinct.result')
-rw-r--r-- | mysql-test/r/distinct.result | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/mysql-test/r/distinct.result b/mysql-test/r/distinct.result index 3ad2b73f1d3..9d008fc3830 100644 --- a/mysql-test/r/distinct.result +++ b/mysql-test/r/distinct.result @@ -472,3 +472,43 @@ id IFNULL(dsc, '-') 2 line number two 3 line number three drop table t1; +CREATE TABLE t1 (a int); +INSERT INTO t1 VALUES (1),(2),(3),(4),(5); +SELECT DISTINCT a, 1 FROM t1; +a 1 +1 1 +2 1 +3 1 +4 1 +5 1 +SELECT DISTINCT 1, a FROM t1; +1 a +1 1 +1 2 +1 3 +1 4 +1 5 +CREATE TABLE t2 (a int, b int); +INSERT INTO t2 VALUES (1,1),(2,2),(2,3),(2,4),(3,5); +SELECT DISTINCT a, b, 2 FROM t2; +a b 2 +1 1 2 +2 2 2 +2 3 2 +2 4 2 +3 5 2 +SELECT DISTINCT 2, a, b FROM t2; +2 a b +2 1 1 +2 2 2 +2 2 3 +2 2 4 +2 3 5 +SELECT DISTINCT a, 2, b FROM t2; +a 2 b +1 2 1 +2 2 2 +2 2 3 +2 2 4 +3 2 5 +DROP TABLE t1,t2; |