sql satement for 2nd maximum value
Answers were Sorted based on User's Feedback
Answer / archana chavan
select top 1 * from author where phone < (select max(phone)
from author) order by phone desc
| Is This Answer Correct ? | 18 Yes | 4 No |
Answer / murli d
author is Table name
ID is column name
select top 1 * from author where ID < (select max(ID)
from author) order by ID desc
| Is This Answer Correct ? | 16 Yes | 3 No |
Answer / cherran
select top 1 sal from
( select top 2 sal from test order by sal desc ) as kk order
by sal
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / avnish
create table emp with row empsal having the datatype float
and insert some salary
now to get the second max salary
write the sql statement
select max(empsal) from emp where empsal<(select max(empsal)
from emp)
its asubquery
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / sanjeev singla
Hey guys use this query ,i used it so many time ,it will be
useful to you..try this one...
SELECT MAX(Salary) AS Expr1
FROM Employees
WHERE (Salary <
(SELECT MAX(Salary)
FROM Employees))
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / ramavtar rajput
select Amount from T2 where Amount = ( select max(Amount)
from T2 where Amount < ( select max(Amount) from T2 ))
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / kaushal gajjar
select top 1 UnitsInStock
from products
where UnitsInStock in (select top 2 UnitsInStock from
products order by UnitsInStock desc)
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / suresh
department as table name,sfee as column name
SELECT TOP (1) sfee
FROM DEPARTMENT
WHERE (SFEE IN
(SELECT TOP (2) SFEE
FROM DEPARTMENT AS
DEPARTMENT_1
ORDER BY SFEE DESC))
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / jacob
1)Select Max(Total) from mark
2)select top 1 total from
( select top 2 total from mark order by total desc ) as
result order
by Total
| Is This Answer Correct ? | 0 Yes | 0 No |
i have attended interview for cognizant ( 3 +,on .net ) on 19-06-2010 till now i have not given the status ..am confused... does any one faced same situation ...could please tell what would be happened
What is difference between Abstract Class and Interface?
Regarding Types of compatability in VB and their usage ?
What is vb.net used for?
described weak typing?
What is meant by jagged arrays?
What are the advantages of migrating to vb.net?
Explain the observations between vb.net and vc#.net?
hello dear friends my problem is that i want to save images that is pictures in SQL server using vb.net can any body help me to do so please
Allowed program to auto-correct the database when loading a presentation.
Explain an assembly?
i have two class that contain's two methods as same name in derived class i have to call these two methods what will happen at run time ?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)