前提・実現したいこと
下記のような相関サブクエリをRailsで書きたいです。
SELECT shohin_bunrui, shohin_mei, hanbai_tanka FROM db_shohins AS s1 WHERE hanbai_tanka > (SELECT AVG(hanbai_tanka) FROM db_shohins AS s2 WHERE s1.shohin_bunrui = s2.shohin_bunrui GROUP BY shohin_bunrui);
使用しているデータは以下となります。
+----+-----------------------+--------------------+--------------+--------------+------------+---------------------+---------------------+
| id | shohin_mei | shohin_bunrui | hanbai_tanka | shiire_tanka | torokubi | created_at | updated_at |
+----+-----------------------+--------------------+--------------+--------------+------------+---------------------+---------------------+
| 1 | Tシャツ | 衣服 | 1000 | 500 | 2009-09-20 | 2020-08-11 21:17:38 | 2020-08-11 21:17:38 |
| 2 | 穴あけパンチ | 事務用品 | 500 | 320 | 2009-09-01 | 2020-08-11 21:17:38 | 2020-08-11 21:17:38 |
| 3 | カッターシャツ | 衣服 | 4000 | 2800 | NULL | 2020-08-11 21:17:38 | 2020-08-11 21:17:38 |
| 4 | 包丁 | キッチン用品 | 3000 | 2800 | 2009-09-20 | 2020-08-11 21:17:38 | 2020-08-11 21:17:38 |
| 5 | 包丁鍋 | キッチン用品 | 6800 | 5000 | 2009-01-15 | 2020-08-11 21:17:38 | 2020-08-11 21:17:38 |
| 6 | フォーク | キッチン用品 | 500 | NULL | 2009-09-20 | 2020-08-11 21:17:38 | 2020-08-11 21:17:38 |
| 7 | おろしがね | キッチン用品 | 880 | 790 | 2009-04-28 | 2020-08-11 21:17:38 | 2020-08-11 21:17:38 |
| 8 | ボールペン | 事務用品 | 100 | NULL | 2009-11-11 | 2020-08-11 21:17:38 | 2020-08-11 21:17:38 |
+----+-----------------------+--------------------+--------------+--------------+------------+---------------------+---------------------+
試したこと
コンソールで以下のようなコマンドを叩いてもエラーがでます。
> DbShohin.select('shohin_bunrui, shohin_mei, hanbai_tanka').from('db_shohins AS s1') .where("hanbai_tanka > #{DbShohin.select('AVG(hanbai_tanka)').from('db_shohins AS s2') .where('s1.shohin_bunrui = s2.shohin_bunrui').group('shohin_bunrui').to_sql}") DbShohin Load (1.4ms) SELECT shohin_bunrui, shohin_mei, hanbai_tanka FROM db_shohins AS s1 WHERE (hanbai_tanka > SELECT AVG(hanbai_tanka) FROM db_shohins AS s2 WHERE (s1.shohin_bunrui = s2.shohin_bunrui) GROUP BY `db_shohins`.`shohin_bunrui`) LIMIT 11 Traceback (most recent call last): ActiveRecord::StatementInvalid (Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT AVG(hanbai_tanka) FROM db_shohins AS s2 WHERE (s1.shohin_bunrui = s2.shoh' at line 1: SELECT shohin_bunrui, shohin_mei, hanbai_tanka FROM db_shohins AS s1 WHERE (hanbai_tanka > SELECT AVG(hanbai_tanka) FROM db_shohins AS s2 WHERE (s1.shohin_bunrui = s2.shohin_bunrui) GROUP BY `db_shohins`.`shohin_bunrui`) LIMIT 11)
AS句で定義したs1とs2を比較する部分とその後のGroup By 句が上手く関連してないようなのですが、Railsだと書き方がわかりません。
なるべくArelは使わないで書きたいと思っています。
良い方法あれば教えてください。
補足情報(FW/ツールのバージョンなど)
- Ruby '2.7.0'
- Rails '5.2.4'
- MySql Ver 14.14 Distrib 5.7.29
あなたの回答
tips
プレビュー