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.
我有一个表,其中包含一个包含 3600 个条目的列价格。我需要将价格列增加 9% 或将价格列的内容乘以 1.09,然后将更新后的价格放回价格列中。解决这个问题的最佳方法是什么?
应该很简单:
Update MyTable Set Price = Price*1.09