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 do you write an index?
I have the table like this S.No Name ID 01 Xyz 123 I want the result as 01Xyz123 How to write the query to retrieve the entire row data in a single column?
What is parameter substitution in sql?
how instead of triger is helpful for mutating tables errors handlling ?
How to run sql*plus commands in sql developer?
what is the output of this query selet * from employee where 1=2 ??
How many sql commands are there?
What is left inner join in sql?
Is sql between inclusive?
What is character functions?
Which software is used for pl sql programming?
can we call a procedure into another procedure?If yes means how you can pass the perameters for the two procedures?
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)