From 0ad579f339acd53305203c0fefd1168e6173e9da Mon Sep 17 00:00:00 2001 From: thoshiai Date: Tue, 8 Aug 2023 18:20:27 +0900 Subject: [PATCH] Add README.md add restriction of EXISTS sublink --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f2116e7..e67d4c1 100644 --- a/README.md +++ b/README.md @@ -220,8 +220,9 @@ Simple subqueries in `FROM` clause and EXISTS subqueries in 'WHERE' clause are s #### Restrictions on Subqueries -Subqueries using EXISTS and simple subqueries in FROM clause are supported. EXISTS subqueries with condition other than 'AND' and Subqueries in targetlist are not supported. +Subqueries using EXISTS and simple subqueries in FROM clause are supported. EXISTS subqueries with condition other than 'AND' and Subqueries in targetlist are not supported. EXISTS subquery is supported only in WHERE but not in the targetlist. +If EXISTS contains columns that refer to columns in tables in the outer query, such columns must be included in the targetlist. Subqueries containing an aggregate function or `DISTINCT` are not supported. ### CTE