I want to do something like this in Rails:
"SELECT *, COUNT(post_id) AS total FROM comments ... conditions"
Is that SELECT possible in Rails. Ohterwise, I can use find_by_sql, but
i'm trying to avoid SQL injection and this SQL needs a parameter. Is
there a way to sanitize this parameter?