• rhythmk (8/17/2012)


    raghuldrag (8/17/2012)


    hi friends,

    create table emp(ename varchar(34),job char(33),sal varchar(22))

    insert into emp values('sa','sales','400')

    insert into emp values('ka','manager','4000')

    insert into emp values('sam','Markting','2500')

    insert into emp values('sabu','system','3900')

    in these table model i ve a report now i need to display the 3rd max salry peoples,......like ... when i am entering postion its display the tat postion of max salry..... ve write on single query

    Please use Dense rank on sal for this.

    Agreed that you should look at RANK() and DENSE_RANK() and decide which to use based on the business rules for tie breakers.


    My mantra: No loops! No CURSORs! No RBAR! Hoo-uh![/I]

    My thought question: Have you ever been told that your query runs too fast?

    My advice:
    INDEXing a poor-performing query is like putting sugar on cat food. Yeah, it probably tastes better but are you sure you want to eat it?
    The path of least resistance can be a slippery slope. Take care that fixing your fixes of fixes doesn't snowball and end up costing you more than fixing the root cause would have in the first place.

    Need to UNPIVOT? Why not CROSS APPLY VALUES instead?[/url]
    Since random numbers are too important to be left to chance, let's generate some![/url]
    Learn to understand recursive CTEs by example.[/url]
    [url url=http://www.sqlservercentral.com/articles/St