Add AS helper function #91

Closed
imle wants to merge 1 commits from add-as-function into master

5
as.go Normal file
View File

@ -0,0 +1,5 @@
package builder
func As(table, alias string) string {
return table + " " + alias
}