質問編集履歴
2
ソースコードのタイトルを追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -76,7 +76,9 @@
|
|
76
76
|
|
77
77
|
```
|
78
78
|
|
79
|
-
|
79
|
+
**計算と結果の代入**
|
80
|
+
|
81
|
+
```
|
80
82
|
|
81
83
|
song[:song_practices] = song.chords.joins(:practices).distinct.count('practices.user_id')
|
82
84
|
|
1
ソート用の計算式の明記
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,7 +46,15 @@
|
|
46
46
|
|
47
47
|
![例](47c0a270bf5b0e950783b6dfb0f57dbe.png)
|
48
48
|
|
49
|
+
|
50
|
+
|
51
|
+
計算自体は下記の記述でうまくいっています。
|
52
|
+
|
53
|
+
```
|
54
|
+
|
55
|
+
result = song.chords.joins(:practices).distinct.count('practices.user_id')
|
56
|
+
|
49
|
-

|
57
|
+
```
|
50
58
|
|
51
59
|
|
52
60
|
|
@@ -68,6 +76,12 @@
|
|
68
76
|
|
69
77
|
```
|
70
78
|
|
79
|
+
```計算と結果の代入
|
80
|
+
|
81
|
+
song[:song_practices] = song.chords.joins(:practices).distinct.count('practices.user_id')
|
82
|
+
|
83
|
+
```
|
84
|
+
|
71
85
|
|
72
86
|
|
73
87
|
# 【問題】
|