postgresql/src/test/regress/expected/subselect.out

204 lines
5.3 KiB
Plaintext
Raw Normal View History

2000-01-06 07:40:54 +01:00
--
-- SUBSELECT
--
SELECT 1 AS one WHERE 1 IN (SELECT 1);
one
-----
1
1998-02-18 08:32:17 +01:00
(1 row)
2000-01-06 07:40:54 +01:00
SELECT 1 AS zero WHERE 1 NOT IN (SELECT 1);
zero
------
1998-02-18 08:32:17 +01:00
(0 rows)
2000-01-06 07:40:54 +01:00
SELECT 1 AS zero WHERE 1 IN (SELECT 2);
zero
------
1998-02-18 08:32:17 +01:00
(0 rows)
2000-01-06 07:40:54 +01:00
-- Set up some simple test tables
CREATE TABLE SUBSELECT_TBL (
1998-02-18 08:32:17 +01:00
f1 integer,
f2 integer,
f3 float
);
2000-01-06 07:40:54 +01:00
INSERT INTO SUBSELECT_TBL VALUES (1, 2, 3);
INSERT INTO SUBSELECT_TBL VALUES (2, 3, 4);
INSERT INTO SUBSELECT_TBL VALUES (3, 4, 5);
INSERT INTO SUBSELECT_TBL VALUES (1, 1, 1);
INSERT INTO SUBSELECT_TBL VALUES (2, 2, 2);
INSERT INTO SUBSELECT_TBL VALUES (3, 3, 3);
INSERT INTO SUBSELECT_TBL VALUES (6, 7, 8);
INSERT INTO SUBSELECT_TBL VALUES (8, 9, NULL);
SELECT '' AS eight, * FROM SUBSELECT_TBL;
eight | f1 | f2 | f3
-------+----+----+----
| 1 | 2 | 3
| 2 | 3 | 4
| 3 | 4 | 5
| 1 | 1 | 1
| 2 | 2 | 2
| 3 | 3 | 3
| 6 | 7 | 8
| 8 | 9 |
1998-02-18 08:32:17 +01:00
(8 rows)
2000-01-06 07:40:54 +01:00
-- Uncorrelated subselects
SELECT '' AS two, f1 AS "Constant Select" FROM SUBSELECT_TBL
1998-02-18 08:32:17 +01:00
WHERE f1 IN (SELECT 1);
2000-01-06 07:40:54 +01:00
two | Constant Select
-----+-----------------
| 1
| 1
1998-02-18 08:32:17 +01:00
(2 rows)
2000-01-06 07:40:54 +01:00
SELECT '' AS six, f1 AS "Uncorrelated Field" FROM SUBSELECT_TBL
1998-02-18 08:32:17 +01:00
WHERE f1 IN (SELECT f2 FROM SUBSELECT_TBL);
2000-01-06 07:40:54 +01:00
six | Uncorrelated Field
-----+--------------------
| 1
| 2
| 3
| 1
| 2
2000-01-06 07:40:54 +01:00
| 3
1998-02-18 08:32:17 +01:00
(6 rows)
2000-01-06 07:40:54 +01:00
SELECT '' AS six, f1 AS "Uncorrelated Field" FROM SUBSELECT_TBL
1998-02-18 08:32:17 +01:00
WHERE f1 IN (SELECT f2 FROM SUBSELECT_TBL WHERE
f2 IN (SELECT f1 FROM SUBSELECT_TBL));
2000-01-06 07:40:54 +01:00
six | Uncorrelated Field
-----+--------------------
| 1
| 2
| 3
| 1
| 2
2000-01-06 07:40:54 +01:00
| 3
1998-02-18 08:32:17 +01:00
(6 rows)
SELECT '' AS three, f1, f2
1998-02-18 08:32:17 +01:00
FROM SUBSELECT_TBL
WHERE (f1, f2) NOT IN (SELECT f2, CAST(f3 AS int4) FROM SUBSELECT_TBL
WHERE f3 IS NOT NULL);
three | f1 | f2
-------+----+----
| 1 | 2
| 6 | 7
| 8 | 9
(3 rows)
-- Correlated subselects
SELECT '' AS six, f1 AS "Correlated Field", f2 AS "Second Field"
FROM SUBSELECT_TBL upper
WHERE f1 IN (SELECT f2 FROM SUBSELECT_TBL WHERE f1 = upper.f1);
2000-01-06 07:40:54 +01:00
six | Correlated Field | Second Field
-----+------------------+--------------
| 1 | 2
| 2 | 3
| 3 | 4
2000-01-06 07:40:54 +01:00
| 1 | 1
| 2 | 2
| 3 | 3
1998-02-18 08:32:17 +01:00
(6 rows)
2000-01-06 07:40:54 +01:00
SELECT '' AS six, f1 AS "Correlated Field", f3 AS "Second Field"
FROM SUBSELECT_TBL upper
WHERE f1 IN
(SELECT f2 FROM SUBSELECT_TBL WHERE CAST(upper.f2 AS float) = f3);
2000-01-06 07:40:54 +01:00
six | Correlated Field | Second Field
-----+------------------+--------------
| 2 | 4
| 3 | 5
| 1 | 1
| 2 | 2
| 3 | 3
(5 rows)
1998-02-18 08:32:17 +01:00
2000-01-06 07:40:54 +01:00
SELECT '' AS six, f1 AS "Correlated Field", f3 AS "Second Field"
FROM SUBSELECT_TBL upper
WHERE f3 IN (SELECT upper.f1 + f2 FROM SUBSELECT_TBL
WHERE f2 = CAST(f3 AS integer));
six | Correlated Field | Second Field
-----+------------------+--------------
| 1 | 3
| 2 | 4
| 3 | 5
| 6 | 8
(4 rows)
2000-01-06 07:40:54 +01:00
SELECT '' AS five, f1 AS "Correlated Field"
1998-02-18 08:32:17 +01:00
FROM SUBSELECT_TBL
WHERE (f1, f2) IN (SELECT f2, CAST(f3 AS int4) FROM SUBSELECT_TBL
WHERE f3 IS NOT NULL);
2000-01-06 07:40:54 +01:00
five | Correlated Field
------+------------------
| 2
| 3
| 1
| 2
2000-01-06 07:40:54 +01:00
| 3
1998-02-18 08:32:17 +01:00
(5 rows)
2000-01-06 07:40:54 +01:00
--
-- Use some existing tables in the regression test
--
SELECT '' AS eight, ss.f1 AS "Correlated Field", ss.f3 AS "Second Field"
1998-02-18 08:32:17 +01:00
FROM SUBSELECT_TBL ss
WHERE f1 NOT IN (SELECT f1+1 FROM INT4_TBL WHERE f1 != ss.f1);
2000-01-06 07:40:54 +01:00
eight | Correlated Field | Second Field
-------+------------------+--------------
| 2 | 4
| 3 | 5
| 2 | 2
| 3 | 3
| 6 | 8
| 8 |
(6 rows)
select q1, float8(count(*)) / (select count(*) from int8_tbl)
from int8_tbl group by q1 order by q1;
q1 | ?column?
------------------+----------
123 | 0.4
4567890123456789 | 0.6
(2 rows)
1998-02-18 08:32:17 +01:00
--
-- Test cases to catch unpleasant interactions between IN-join processing
-- and subquery pullup.
--
select count(*) from
(select 1 from tenk1 a
where unique1 IN (select hundred from tenk1 b)) ss;
count
-------
100
(1 row)
select count(distinct ss.ten) from
(select ten from tenk1 a
where unique1 IN (select hundred from tenk1 b)) ss;
count
-------
10
(1 row)
select count(*) from
(select 1 from tenk1 a
where unique1 IN (select distinct hundred from tenk1 b)) ss;
count
-------
100
(1 row)
select count(distinct ss.ten) from
(select ten from tenk1 a
where unique1 IN (select distinct hundred from tenk1 b)) ss;
count
-------
10
(1 row)