top-think / think-orm

Think ORM——the PHP Database&ORM Framework
Apache License 2.0
413 stars 171 forks source link

alias 和 partition 一块儿使用时,生产的SQL语法是错误的 #485

Open LLoyou00 opened 1 year ago

LLoyou00 commented 1 year ago

RT

正确的语法是 select * from table_name partition(p1,p2) alias;

而代码生成的SQL是 select * from table_name alias partition(p1,p2);