We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1.18.0
Sqlc could not support table alias, the sql example is in below.
The error message is "table alias "t1" does not exist"
No response
CREATE TABLE authors ( id BIGINT PRIMARY KEY AUTO_INCREMENT, name text NOT NULL, bio text );
/* name: ListAuthors2 :many */ select * from (SELECT * FROM authors) as t1 where t1.id > ?;