sql >> Database teknologi >  >> RDS >> Mysql

FEJL 1349 (HY000):Views SELECT indeholder en underforespørgsel i FROM-sætningen

Hvad med det her i stedet?

create view fg_voted as (

  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, 
           f1.voted 
  HAVING count(f1.vote) > 3
 );



  1. HOUR() Eksempler – MySQL

  2. Forbindelse til mysql ved hjælp af php

  3. Hvordan laver man en hurtigere best-n-per-group-forespørgsel?

  4. UDSKIFT rækker i mysql database tabel med pandas DataFrame