Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
update_winnerlistすでにGROUPEDBYされているビューで次のようなクエリを作成しようとしていますitem_index。
update_winnerlist
item_index
SELECT email_id (SELECT email_id, MIN(bid_amount) FROM update_winnerslist AS a1 WHERE a1.item_index = 10 )
テーブルを更新するトリガーで使用しているため、上記を1つのクエリで実行する必要があります。
select top 1 email_id from update_winnerslist where item_index = 10 order by bid_amount desc