i have a table like sales....the field are

Prodid Jan(jam month sales)Feb March apr may jun july

1 20 76 50 74 94 93 83
2 30 94 40 94 93 93 02
3 40 90 30 49 94 92 56
4 70 20 30 93 46 35 78
5 23 40 40 39 84 46 57
6 85 30 55 93 46 46 46
7 84 20 65 83 56 57 57
8 10 93 40 93 68 57 36
9 57 30 30 83 67 57 79
10 38 83 40 83 55 68 47
11 35 39 90 94 57 78 47
12 83 89 50 93 79 69 69
i wat ti find the max sales of every product which i want to
load into target table

Answer Posted / rahul

I agree wth the solution....

but here is the easy way to find the max of sales min of
sales with the two functions that are
greatest and least

the query is

select prodid, greatest(jan,feb,march,apr,may,june,july) as
higher ,
least(jan,feb,march,apr,may,june,july)as low_sales from sales
group by prodid;

Thanks
Rahul

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is multi insert ansi standard?

1926


Explain fastload in teradata?

813


Explain parsing engine in teradata?

785


Highlight the limitations of TPUMP Utility.

774


Name the five phases that come under MultiLoad Utility.

749


What is the basic syntax for teradata select statement?

749


How can you track login parameters of users in teradata?

822


Is it necessary to add? Quit statement after a bteq query when I am calling it in a unix environment?

875


Explain the term 'foreign key' related to relational database management system?

726


What is meant by a Least Cost Plan?

785


What is the command in bteq to check for session settings ?

840


What is called partitioned primary index (ppi) and discuss the advantages of using it in a query?

750


How would you load a very large file in teradata in general? What utility would you use for it? Why?

828


Why teradata is used?

758


List out teradata data types?

737