i have a table t1 a math 20
b phy 30
cchemisty 10
a math 40
b phy 23
c che 21
a math15
bphy 33
c che 56
write a quire to find out the max markr of each subject
Answers were Sorted based on User's Feedback
Answer / kart
select sname,max(mark) from xtable group by sname;
che 56
mat 40
phy 33
Is This Answer Correct ? | 14 Yes | 2 No |
Answer / giri babu
select sname,max(smarks)
from t1
group by sname
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / kotesh
select sname,max(marks) from student group by sname;
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sumit
select subject,max(marks) from t1 group by subject;
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dharmendra
select subject,max(marks) from table_name
group by subject
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / kotesh
select subname,max(marks) from t1 groupby subname
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / satishilluri
select max(math)max(phy),max(che) from t1
Is This Answer Correct ? | 9 Yes | 12 No |
Answer / naresh
select subid,max(math),max(phy),max(che) from tablet1
group by subid
Is This Answer Correct ? | 0 Yes | 3 No |
How is data stored on a disk?
What is difference between pls_integer and integer?
What is sqlca in db2?
What is the use of function "module procedure" in pl/sql?
What is the use of triggers?
What do you mean by table in sql?
can we update a view which is created from two tables
Does truncate need commit?
What is the difference between anonymous block and named block or stored procedure?
What are Lexical Parameters.How They are used in Reports 6i
what is oracle sql,pl/sql with interfaces
What are the different types of constraints?