Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 / soma

Update Sales_summary set sales = s2.sales
From Sales_summary s1,
(
Select Region, max(sales) sales
From sales_data group by Region
)s2
where s1.Region = s2.Region;

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you define a foreign key?

1063


what is the difference between cluster and non cluster index? : Sql dba

1077


What is mutating trigger?

1071


What is date functions?

1088


What is the left table in sql?

1014


how do you tune the slow running queries in oracle db , explain the methodology

3221


Is sqlite thread safe?

1102


What is string join?

1023


what happens if null values are involved in expressions? : Sql dba

1091


What is set transaction?

1088


What are the two types of periodical indexes?

987


What is pivot query?

1120


What is the clause we need to add in function body to return variable?

1052


What is the difference between distinct and unique in sql?

991


can a stored procedure call itself or recursive stored procedure? : Sql dba

1084