2つの別々のビューを作成したくありません。
create view fg_voted as (
select *
from (select f1.foto, count(f1.vote) stars,f1.vote, f1.voted
from fg_foto_bewertung f1
where f1.vote >= 3 group by f1.foto, f1.vote) vi_foto
where stars > 3);
ビューを作成するために単一のクエリでそれをどのように書くことができますか?