We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
select ... order_id AS sharding_gen_1 from order a order by a.order_id
应该为
select ... a.order_id AS sharding_gen_1 from order a order by a.order_id
select a.order_id, order_id AS sharding_gen_1 from order a group by a.order_id
select a.order_id from order a order by a.order_id
The text was updated successfully, but these errors were encountered:
180bb29
No branches or pull requests
bug现象
应该为
bug现象
应该为
The text was updated successfully, but these errors were encountered: