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 do you load large data to the SQL server database?
what is the basic diffrence betn a col declared in char(1) and in varchar(1)
What is transaction server auto commit?
What do you mean by a Composite primary key?
What is live lock and deadlock? what is Lock escalation?
how to generate XML out of QUERY?
How can you get @@error and @@rowcount at the same time?
How do clustered indexes store data?
What is named calculation? : sql server analysis services, ssas
what is Full Text Search ?
How to make a column nullable?
Using query analyzer, name 3 ways you can get an accurate count of the number of records in a table?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)