Display a roll having miminum marks in two subjects?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
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 |
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 |
How to manipulate data from one table to another table ?
What is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure? How many levels of sp nesting is possible?
How to write the storeprocedure with in the store procedure? and how can we write the store procedure with in a trigger vice versa? plz post me the exact answer?
Can we insert data into a view?
Can I delete event logs?
List few advantages of stored procedure.
What is a primary index?
Difference b/w Clustered & non-clustered index? Not the bookish definition, but how they internally works in SQL Server?
How will you make an attribute not process? : sql server analysis services, ssas
What is correlated subquery in sql server?
Wht is SQL Injection Attack ?
What is the difference between clustered index and primary key?