how to use group by in update query in sql server
how to use group by in update query in sql server without using join
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Upendra Pratap ShahiPosted Jul 29, 2015, 3:53 AM
UPDATE Your_table SET name='HIGH' WHERE age IN (SELECT MAX(age) FROM Your_table GROUP BY TYPE);
Govinda Rajulu YemineniPosted Jul 29, 2015, 2:37 AM
Manas MohapatraPosted Jul 29, 2015, 2:34 AM
Amitesh VermaPosted Jul 29, 2015, 2:20 AM
Pranay RanaPosted Jul 29, 2015, 2:18 AM