You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{define "star"}}
ID,
EMAIL,
ADDRESS1 as address_line1,
ADDRESS2 as address_line2,
POSTCODE
{{end}}
{{define "allUsers"}}
SELECT {{star}}
FROM users
WHERE 1=1
{{end}}
{{define "getUser"}}
SELECT {{star}}
FROM users
WHERE id=?
{{end}}
The text was updated successfully, but these errors were encountered:
Is it possible to nest templates?
For example:
The text was updated successfully, but these errors were encountered: