私はジョインを使用するクエリを実行しています。その中で私は合計金額のサブクエリを使用しました。私は、次のようなサブクエリの結果でソートしたい。mysqlのソートとサブクエリの使用
"select users.*, (select sum(amount) as camount from donation where donation.uid=users.id) as camount from users where users.confirmed=1 and camount between 3 and 5 order by camount";
私はエラーを取得:1064
サブクエリの結果を使用してsotringで照会する方法は?
ない全くOPが何を望んで。問合せは、*各レコードの* all *ユーザーの合計量を取得します。 –