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
Gettting and displaying stock related information in Asp.Net
Broken Hyperlinks in Excel
Find the syntax error in a INSERT INTO statement
Data not current when printing form
Show Unique Product with Unique PDL
How do I setup a network with cross over cable between server 2008 and server 2003? 500pnts
Save unbound combobox column value in Access 2007
Rank records in an Access Dbase by date
GetPivotdata Formula
How to open website (hosted on Win Server 2008, IIS) in Microsoft Frontpage 2000?