i have column like below
studentid studentname sub1 sub2 sub3
1 aaa 40 70 90
2 bbb 60 80 50
i want to execute every student highest mark in which subject
my o/p like below
studentid studentname sub3 sub2
1 aaa 90
2 bbb 80
Answer Posted / hariharan
sel
studentid,
studentname,
case
when subject1>subject2 and subject1>subject3
then subject1
when subject2>subject1 and subject2>subject3
then subject2
when subject3>subject1 and subject3>subject2
then subject3
end as high_score,
case
when high_score = subject1
then 'subject1'
when high_score = subject2
then 'subject2'
when high_score = subject3
then 'subject3'
end as subject_name
from stud1
order by 1,2
;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
When tpump is used instead of multiload?
How many codd's rules are satisfied by teradata database?
Briefly explain each of the following terms related to relational database management system (rdbms) – database, tables, columns, row, primary key and foreign key.
How many sessions of MAX is PE capable of handling at a particular time?
What is bteq utility in teradata?
Differentiate primary key and partition key?
Describe primary index in teradata?
What is primary index and secondary index?
Explain teradata utilities?
Explain the term 'tables' related to relational database management system?
Explain the parallel data extension in teradata?
if collect stats but it show low confidence why?
What is meant by a Channel Driver?
what is sysdba and sysdbc ? which has high priority ?
What are the frequently used data types in teradata?