Hi, I'm struggling to express a query in DBIC. I've got the following situation:
table events {
id primary key,
name varchar
}
table sessions {
id primary key,
event references events(id),
starts datetime
}
I have the appropriate DBIx classes set up, including the proper has_many() and belongs_to() relationships. So each event can have multiple sessions. I need a list of events, ordered their earliest start date. The SQL for this
would be:
select e.name, s.starts
from events e
join sessions s on e.id = s.event
join ( select event, min(starts) as starts
from sessions
group by event
) as t
on s.event = t.event
and s.time = t.starts
But how do I convert this to a DBIC expression? I'd appreciate your help
--
Lyon
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.