Microsoft
Software
Hardware
Network
Question : SQL query - AVG TOP 10
Hi all,
How do I use a avg statement in conjunction with a top selection? Like:
select avg
(select top 10 column1
from table1
order by column1 desc)
Thanks!
Answer : SQL query - AVG TOP 10
select avg (Column1)
from
(select top 10 column1
from table1
order by column1 desc)a
Random Solutions
Windows Server 2003 SP1 update problem
Resizing a web Browser inside a acces form
VB.NET: ListView FindItemWithText returns exception
Calendar with current date and month
How do I supress the add new record icon at the bottom of subdata sheets?
MS Access Query Criteria Text Box
union all query
Save unbound combobox column value in Access 2007
Can't boot from secondary plex standalone
Change collation on many tables/columns - SQL Server 2005