gen icon indicating copy to clipboard operation
gen copied to clipboard

Alias for table not used in FROM

Open nikhrom opened this issue 2 years ago • 0 comments

GORM Playground Link

Description

Hello! When trying to use Alias ​​it is not declared in FROM:

sc := Query().SoftwareComponent.As("sc")
sc.Select(sc.Id).First()
// Generated:     SELECT "sc"."id" FROM "software_component" ORDER BY "software_component"."id" LIMIT 1            <--- ERROR
// Expected:      SELECT "sc"."id" FROM "software_component" AS "sc" ORDER BY "software_component"."id" LIMIT 1

nikhrom avatar Aug 02 '22 11:08 nikhrom