JetBrains / JetBrains/Exposed

Support implicit join

Open
#443 1 comment 0 reactions 0 assignees View on GitHub
enhancement
Dominant language
Kotlin
Stars
9.3k
Forks
798
Avg merge
4d 2h
Merged PRs (30d)
26

Description

Can you please add support for implicit join?

An example can be find here https://blog.jooq.org/2018/02/20/type-safe-implicit-join-through-path-navigation-in-jooq-3-11/

Idea is instead of
```
SELECT  
cu.first_name,  
cu.last_name,  
co.country
FROM customer AS cu
JOIN address USING (address_id)
JOIN city USING (city_id)
JOIN country AS co USING (country_id)
```
we can write
```
SELECT
cu.first_name,
cu.last_name,
cu.address.city.country.country
FROM customer AS cu
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.