Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to create median function?



How to create median function?..

Answer / Gourav Kumar Rastogi

In SQL Server Reporting Services, you can create a median function by using a windowed function like MEDIAN. However, MEDIAN is not supported in all SQL Server versions. As an alternative, you can write your own median function as follows:n`nCREATE FUNCTION dbo.Median (@pData FLOAT) nRETURNS FLOAT AS BEGIN nDECLARE @count INT = (SELECT COUNT(*) FROM @pData) nORDER BY pData nSET @pData = (SELECT TOP ((@count + 1) / 2) pData FROM @pData WHERE ORDER BY pData > @counter) nIF (@count % 2 = 0) nBEGIN n SET @pData = (@pData + (SELECT TOP 1 pData FROM @pData WHERE ORDER BY pData < @counter)) / 2 nEND nRETURN @pData nENDn

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SSRS SQL Server Reporting Services Interview Questions

You want to use bids to deploy a report to a different server than the one you chose in the report wizard. How can you change the server url?

1 Answers  


How to make conditional sum in ssrs?

1 Answers  


You want your report to display a hyperlink that will take users to your intranet. How do you configure such a hyperlink?

1 Answers  


Name and describe few console utilities for ssrs?

1 Answers  


how you can deploy an ssrs report?

1 Answers  


What are sub reports?

1 Answers  


what are the important architecture components of SSRS?

1 Answers  


What is ssrs?

1 Answers  


In which sql server version report builder introduced?

1 Answers  


What are the reporting services components?

1 Answers  


how to create “alternate row colour”?

1 Answers  


What are data regions?

1 Answers  


Categories
  • SSRS SQL Server Reporting Services Interview Questions SSRS SQL Server Reporting Services (140)
  • Microsoft Azure SQL Interview Questions Microsoft Azure SQL (73)