MySQL Doctrine 和 Symfony 中的用户定义变量
我有以下的原则声明,效果很好。
$query = $this->createQuery('r')
->select('u.id, CONCAT(u.first_name, " ", LEFT(u.last_name,1)) as full_name, u.first_name, u.last_name, u.gender, r.run_time')
->innerJoin('r.ChallengeUser u')
->orderBy('run_time')
->execute(array(), Doctrine::HYDRATE_ARRAY_SHALLOW);
我需要在其中添加行数。现在我知道使用原始 SQL 你可以做到这一点;
SET @rank=0;
SELECT @rank:=@rank+1 as rank, u.id, u.first_name ....etc
所以我的问题是,如何让它与 Symfony 1.4 和 Doctrine 一起运行? 我在这个项目中使用 MySQL。
编辑... 我想通了。
Doctrine_Manager::getInstance()->getCurrentConnection()->standaloneQuery('SET @rank=0;')->execute();
$query = $this->createQuery('r')
->select('r.run_time, @rank:=@rank+1 rank, r.user_id, CONCAT(u.first_name, " ", LEFT(u.last_name,1)) as full_name, u.first_name, u.last_name, u.gender')
->leftJoin('r.ChallengeUser u')
->orderBy('run_time')
->execute(array(), Doctrine::HYDRATE_ARRAY_SHALLOW);
添加独立查询来设置变量,并将内部联接交换为左联接。
I have the following Doctrine statement which works fine.
$query = $this->createQuery('r')
->select('u.id, CONCAT(u.first_name, " ", LEFT(u.last_name,1)) as full_name, u.first_name, u.last_name, u.gender, r.run_time')
->innerJoin('r.ChallengeUser u')
->orderBy('run_time')
->execute(array(), Doctrine::HYDRATE_ARRAY_SHALLOW);
I need to add a row count into this. Now I know with raw SQL you can do this;
SET @rank=0;
SELECT @rank:=@rank+1 as rank, u.id, u.first_name ....etc
So my question is, how can I get this to run with Symfony 1.4 and Doctrine?
I am using MySQL for this project.
Edit...
I figured it out..
Doctrine_Manager::getInstance()->getCurrentConnection()->standaloneQuery('SET @rank=0;')->execute();
$query = $this->createQuery('r')
->select('r.run_time, @rank:=@rank+1 rank, r.user_id, CONCAT(u.first_name, " ", LEFT(u.last_name,1)) as full_name, u.first_name, u.last_name, u.gender')
->leftJoin('r.ChallengeUser u')
->orderBy('run_time')
->execute(array(), Doctrine::HYDRATE_ARRAY_SHALLOW);
Add the standalone query in to set the variable, and swap the inner join to a left join.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在使用 MySQL,并且预计不会切换到其他 DBMS,也许您可以尝试
if you are using MySQL, and no switches to other DBMS are foreseen, maybe you could try