-
KXSQL Question 6
For Question 6 Show the average marks per house using SQL Join, call the new column avg_mark. This new value should be rounded down (i.e. contain no decimal values).
i have inputted this query
ex6:”SELECT house,FLOOR(AVG(mark)) AS avg_mark FROM results JOIN students GROUP BY house”.
i am passing 2 categories on correct syntax and table structure but failing on correct record, any advice on how i can overcome this as i have tried everything
Log in to reply.