how to Update table Sales_summary with max(sales) data from
table sales_dataTable 1. sales_data table Table 2.
Sales_summary
Region sales Region sales
N 500 N 0
N 800 W 0
N 600
W 899
W 458
W 900
I want the Sales_summary After Update like this
Region Sales
N 800
W 900
Answer Posted / ajitnayak
update sales_sum s set sales =
(select max(sales) from sales_sum s2 where s.REGIN = s2.REGIN group by REGIN );
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the maximum rows in csv?
What are hotfixes and patches?
What is auto increment in sql?
how to get a list of columns in an existing table? : Sql dba
what is the command line end user interface - mysql? : Sql dba
what is blob? : Sql dba
Can I join the same table twice?
How do you delete data from a table?
what does the t-sql command ident_incr does? : Transact sql
Can dml statements be used in pl/sql?
What is a temporal data type?
What does data normalization mean?
How many tables can you join in sql?
what are the other commands to know the structure of table using mysql commands except explain command? : Sql dba
What is trigger in sql and its types?