Display a roll having miminum marks in two subjects?

Answers were Sorted based on User's Feedback



Display a roll having miminum marks in two subjects?..

Answer / sonia

create table student7(Roll int,English int,Hindi int,Maths
int)
insert into student7 values(1,12,15,9)
insert into student7 values(2,23,3,13)
insert into student7 values(3,15,12,4)

select roll from student7 where
maths=(select min(maths) from student7)
AND
English=(select min(english)from student7)

Rajesh, AND Operator is used b/w two conditions . Answer
given by you is limted to two subjects, if there are three
or more subjects then

Is This Answer Correct ?    5 Yes 2 No

Display a roll having miminum marks in two subjects?..

Answer / pradip jain

Select * from marks where
(Math=(select min(Math)from
marks) and phy=(select min(phy) from marks))
OR
(Math=(select min(Math)from
marks) and chem=(select min(chem) from marks))
OR
(Phy=(select min(phy)from
marks) and chem=(select min(chem) from marks))


Sonia if it is 3 subject and will be combine with or clause

Is This Answer Correct ?    1 Yes 0 No

Display a roll having miminum marks in two subjects?..

Answer / mahesh

Select roll from student
where mark1=(select min(mark1) from student)
and mark2=(select min(mark2) from student)

Is This Answer Correct ?    0 Yes 0 No

Display a roll having miminum marks in two subjects?..

Answer / ivee

Suppose we are having a table called abc which has field
name as marks, subject and roll
now roll2 and roll3 has the same minimum marks as 40
so the query will be

select roll from abc where marks=(select min(marks) from
abc)

Is This Answer Correct ?    0 Yes 0 No

Display a roll having miminum marks in two subjects?..

Answer / rajesh

Select * from Student_Info where Math=(select min(Math)from
Student_Info) or Eng=(select min(Eng) from Student_Info)

Is This Answer Correct ?    1 Yes 2 No

Display a roll having miminum marks in two subjects?..

Answer / jiten patel

Select * from Student_Info where Math=(select min(Math)from
Student_Info) and Eng=(select min(Eng) from Student_Info)

Is This Answer Correct ?    0 Yes 1 No

Display a roll having miminum marks in two subjects?..

Answer / jiten patel

Select * from (table name)where (field1)=(select
min(field1)from
table name) and (field2)=(select min(field2) from table name)

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More SQL Server Interview Questions

How do I open port 1433?

0 Answers  


Tell me about joins in database system and explain each in detail.

0 Answers   Axtria, ITC Indian Tobacco Company,


sql database suspect We have a sql database that is showing as suspect. How can we recover?

0 Answers  


what is database replicaion? What are the different types of replication you can set up in sql server? : Sql server database administration

0 Answers  


Explain activity monitors

0 Answers  






Explain syntax for viewing, dropping and disabling triggers?

0 Answers  


What is an execution plan? When would you use it?

0 Answers  


what's the maximum size of a row? : Sql server database administration

0 Answers  


explain what is raid and what are different types of raid configurations? : Sql server database administration

0 Answers  


What are the differences between lost updates and uncommitted dependencies?

0 Answers  


What is the difference between a view and a stored procedure?

0 Answers  


What is difference between group by and having?

0 Answers  


Categories