SELECT THROUGH
In EDDI.md you propose a `SELECT THROUGH` syntax (I think this was previously SELECT REMOTE) like
```sql
SELECT THROUGH 'https://myPuffinDB.com/' * FROM remoteTable;
```
I would suggest that you rather make `THROUGH` a separate clause since while the current proposal might read more naturally, IMHO it doesn't make so much sense semantically since it sits inside the `SELECT` clause. The `SELECT` clause should be about specifying the projections of the relation and it's not clear to me that `THROUGH` relates to that.
The following still reads like sensible English while having more semantic separation:
```sql
THROUGH 'https://myPuffinDB.com/' SELECT * FROM remoteTable;
```
关闭于 2023-01-29 9 条评论