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



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 3..

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

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 3..

Answer / giri babu

select sname,max(smarks)
from t1
group by sname

Is This Answer Correct ?    1 Yes 0 No

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 3..

Answer / kotesh

select sname,max(marks) from student group by sname;

Is This Answer Correct ?    1 Yes 0 No

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 3..

Answer / sumit

select subject,max(marks) from t1 group by subject;

Is This Answer Correct ?    0 Yes 0 No

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 3..

Answer / dharmendra

select subject,max(marks) from table_name
group by subject

Is This Answer Correct ?    0 Yes 0 No

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 3..

Answer / kotesh

select subname,max(marks) from t1 groupby subname

Is This Answer Correct ?    0 Yes 0 No

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 3..

Answer / satishilluri

select max(math)max(phy),max(che) from t1

Is This Answer Correct ?    9 Yes 12 No

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 3..

Answer / naresh

select subid,max(math),max(phy),max(che) from tablet1
group by subid

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More SQL PLSQL Interview Questions

What is the example of procedure?

0 Answers  


what is auto increment? : Sql dba

0 Answers  


Why are sql stored procedures used?

0 Answers  


I have one table and column is c1 pk, c2 not null,c3 not null and 200 row in it and i add c4 column and value, how can is possible

9 Answers  


Can pl sql procedure have a return statement?

0 Answers  






What are sql functions? Describe in brief different types of sql functions?

0 Answers  


How do you pronounce sql?

0 Answers  


Which normal form is best?

0 Answers  


What does select top 1 do in sql?

0 Answers  


Mention what problem one might face while writing log information to a data-base table in pl/sql?

0 Answers  


What is snowflake sql?

0 Answers  


What is row_number () in sql?

0 Answers  


Categories