(subquery: SQLWrapper)
| 394 | * @see notExists for the inverse of this test |
| 395 | */ |
| 396 | export function exists(subquery: SQLWrapper): SQL { |
| 397 | return sql`exists ${subquery}`; |
| 398 | } |
| 399 | |
| 400 | /** |
| 401 | * Test whether a subquery doesn't include any result |
no test coverage detected