Antwoorden
select count(*)
from Track;Select Name, max(Milliseconds)
from Track;Select Name, min(Milliseconds)
from Track;Select count(*)
from Track
Where GenreID = 10;Last updated
Was this helpful?
select count(*)
from Track;Select Name, max(Milliseconds)
from Track;Select Name, min(Milliseconds)
from Track;Select count(*)
from Track
Where GenreID = 10;Last updated
Was this helpful?
Was this helpful?
Select count(*)
from Track
Where Milliseconds > (select avg(Milliseconds) from Track);