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
-- name: GetUserAccountAllChildIDsByAppID :manySELECTtua.idFROM user_account AS tua
LEFT JOIN (
SELECTta.id,
IFNULL(tb.id, ta.id) AS parent_app_id,
ifnull(tb.masked_sign,ta.masked_sign) AS masked_sign,
ifnull(tb.deleted_sign,ta.deleted_sign) AS deleted_sign
FROM app AS ta
LEFT JOIN app as tb ONta.parent_app_id=tb.idWHEREta.masked_sign=1ANDta.deleted_sign=1
) AS tc ONtc.id=tua.app_idWHEREtc.masked_sign=1ANDtc.deleted_sign=1ANDtc.parent_app_id=sqlc.arg('app_id');
Version
1.27.0
What happened?
table alias "tc" does not exist
Relevant log output
Database schema
SQL queries
Configuration
Playground URL
No response
What operating system are you using?
Windows
What database engines are you using?
MySQL
What type of code are you generating?
Go
The text was updated successfully, but these errors were encountered: