sql select max value from multiple rows

Solutions on MaxInterview for sql select max value from multiple rows by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "sql select max value from multiple rows"
Sarah
12 May 2018
1SELECT name,price FROM fake_apps
2WHERE price = (SELECT max(price) FROM fake_apps);
3