Railsで生sqlを利用して下記のようなsqlを書きました。

【Like table】
id
action_user_id
target_user_id

sql
@user = ActiveRecord::Base.connection.select('select target_user_id, count(id)  from Likes where action_user_id is ##### group by target_user_id order by count(id)')

上記の###にパラメータを渡し、

@id = User.find(#).id
@user = ActiveRecord::Base.connection.select('select target_user_id, count(id)  from Likes where action_user_id is @id group by target_user_id order by count(id)')

のようにするにはどうしたらよいでしょうか。

アドバイスお願いします。