I have a table name Table1 which contain columns Cust_no,
car_model, country, salesamt. The records are 101, Fiat,
India, 12345
2nd record is 102, Tata, USA, 98743 3rd record is 101,
indica, India, 65342 4th record is 103, Toyota, UK, 64522
5th record is 103, Maruti, USA, 98632 and so on.....
Now my question is write sql query which will give me
detail about the sum of sales amount in perticular country
Answers were Sorted based on User's Feedback
Answer / satty
select country,sum(salesamt) from table1 groupby country;
but if its primary key is cust-no, then it will show error
-803 try to insert duplicates in primary key value.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / raghu
select country,sum(salesamt) from table1 where country = ind;
Is This Answer Correct ? | 0 Yes | 1 No |
What is reorg in database?
What is ibm db2 database?
How to execute stored procedures?
I have 1000 rows in a db2 table.I want to update first 100 records,How do I do it?
if there is a table with huge number of records and if i want to extract only first 3 records from the table, what query i have to provide to retreive first 3 records
Is db2 a mainframe database?
Before you give the explain statement, what are the prerogatives?
what is parm utility
What is the function of the Data Manager?
Explain the contents that are a part of dclgen.
B37 abend during spufi?
how to resolve -805. give clear explination for that