### Version 1.18.0 ### What happened? Sqlc could not support table alias, the sql example is in below. The error message is "table alias "t1" does not exist" ### Relevant log output _No response_ ### Database schema ```sql CREATE TABLE authors ( id BIGINT PRIMARY KEY AUTO_INCREMENT, name text NOT NULL, bio text ); ``` ### SQL queries ```sql /* name: ListAuthors2 :many */ select * from (SELECT * FROM authors) as t1 where t1.id > ?; ``` ### Configuration _No response_ ### Playground URL _No response_ ### What operating system are you using? _No response_ ### What database engines are you using? _No response_ ### What type of code are you generating? _No response_