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
How do I add "domain users" to local administrator group
Linking Excel to Access databas
How to sum (distinct values) in Access Report
SCCM not finding computers to push client to
Looking for a way to edit our Global Address list in 2003 server AD
RS-485 Serial Communications
Tree Node Font or graphics change On Mouse HOver
Error message from SQL Server 2005 appearing in SQL Server 2008
VB PowerPack in C#
Open Sharepoint server's pdf file in asp.net...