pastebin
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
pastebin
Follow @pastebin
create new paste
trending pastes
sign up
login
my settings
my profile
My Pastes
Public Pastes
BlockEmeraldOre
2 sec ago
Untitled
9 sec ago
Untitled
4 sec ago
Untitled
5 sec ago
TV Link@@ Los Angeles L...
18 sec ago
Av8B_speedbrake
6 sec ago
Untitled
6 sec ago
Untitled
12 sec ago
Layout Width
Share Pastebin
Untitled
By: a guest | Feb 9th, 2010 | Syntax:
PHP
| Size: 0.22 KB | Hits: 10 | Expires: Never
Download
|
Raw
|
Embed
|
Report abuse
This paste has a previous version,
view the difference
.
$q
=
Doctrine_Query
::
create
(
)
->
from
(
'Group g'
)
->
innerJoin
(
'g.LinkingUserGroup link'
)
->
where
(
'link.user_id = ?'
,
array
(
$userId
)
)
->
orderBy
(
'g.name'
)
;
create new paste
|
create new version of this paste
RAW Paste Data
$q = Doctrine_Query::create() ->from('Group g') ->innerJoin('g.LinkingUserGroup link') ->where('link.user_id = ?', array($userId)) ->orderBy('g.name');