79750891

Date: 2025-08-30 02:12:21
Score: 1
Natty:
Report link
SELECT pet.Name, pet.Type, AVG(Basic_Cost), MIN(Basic_Cost), MAX(Basic_Cost), SUM(Basic_Cost)
FROM visit, pet 
where visit.pet_id = pet.pet_id 
 and visit.pet_id = 'P0001' 
 and visit.vet_id = 'V04'
GROUP BY pet.Name, pet.Type;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abdiaziz Ugase