I have 2 different tables in my database and can't find any reference on how to use a result to update a part of a table.
Here is my scenario
Table: MenuItems
╔════╦══════════════╦
║ id ║ Name ║
╠════╬══════════════╬
║ 1 ║ test ║
║ 2 ║ test2 ║
╚════╩══════════════╩
Table: MenuItemPrices
╔════╦══════════════╦
║ id ║ Price ║
╠════╬══════════════╬
║ 1 ║ 3.50 ║
║ 2 ║ 4.50 ║
╚════╩══════════════╩
Say I want to update test2 price to 5.00, what would be the query I need?