anyone know how I would write that query with AR?
select *, (m.user_id=1) as member from band b join memberships m on m.band_id = g.id;
Thanks in advance.
|
|
anyone know how I would write that query with AR?
Thanks in advance. |
||
|
|
|
|
The assumption here is that you have something that looks like this:
In which case, you can perform this query easily.
Your question is quite vague, however, so if this isn't what you're looking for please considering expanding your question with some more details. You are also referencing an alias "g" in your question which is never defined. |
||
|
|
|
I don't see why you would want to set boolean attributes via the SQL queries. You can do this with good ol' Ruby, which also lets you use has many through as jdl said.
|
||
|
|
|
|
I found it:
|
||||||
|