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

Come utilizzare la clausola HAVING e ORDER BY in sql

Usa where qui invece di having .

having è utile per restringere le condizioni sui valori aggregati.
where è utile per restringere le condizioni sui dati non aggregati.

Aggiorna
SQL Server non è MySQL, cosa funziona su uno ...

  1. Possa solo lavorare sull'altro
  2. Potrebbe essere necessario modificare leggermente per funzionare
  3. Potrebbe essere necessario riprogettare completamente prima che funzioni.

Questo dovrebbe essere ciò di cui hai bisogno

SELECT Id, 
       Name1, 
       ZipCode, 
       StreetName, 
       StreetNumber, 
       State1, 
       Lat, 
       Lng, 
       Keyword, 
       ( 6371 * ACOS( COS( (12.925432/57.2958) ) * COS(  (Lat/57.2958)  ) * COS( ( Lng/57.2958 ) - (77.5940171/57.2958) ) + SIN( 12.925432/57.2958 ) * SIN(  Lat/57.2958  ) ) ) AS distance  
  FROM Business_Details  
  where (Keyword like '%plumber%')  
  and ( 6371 * ACOS( COS( (12.925432/57.2958) ) * COS(  (Lat/57.2958)  ) * COS( ( Lng/57.2958 ) - (77.5940171/57.2958) ) + SIN( 12.925432/57.2958 ) * SIN(  Lat/57.2958  ) ) ) < 1.5
  ORDER BY ( 6371 * ACOS( COS( (12.925432/57.2958) ) * COS(  (Lat/57.2958)  ) * COS( ( Lng/57.2958 ) - (77.5940171/57.2958) ) + SIN( 12.925432/57.2958 ) * SIN(  Lat/57.2958  ) ) ) ;