go-rel / rel

:gem: Modern ORM for Golang - Testable, Extendable and Crafted Into a Clean and Elegant API

Home Page:https://go-rel.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alias issue

fairking opened this issue · comments

commented

The following builder:
rel.Select("c.id", "c.name").From("contacts c")
gives the following result
SELECT c.id,c.nameFROMcontacts c;
which is wrong.

The right solution would be:
SELECT c.id,c.nameFROMcontacts c;

commented

Duplicate: go-rel/sql#69