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.
我的表中有一个名为“价格”的列。我想在另一列中显示添加了增值税的价格。假设税率为 15%。我不想在数据库中添加另一列。
mysql 命令的外观如何?
我努力了:
SELECT SUM(price) FROM mytable
它总结了所有价格字段......我想添加 15%,然后在另一列中显示结果。
任何帮助表示赞赏。
您可以为此使用视图:
create vw_mytable as select t.*, price*(1+0.15) as PriceWithVat from mytable t
然后,您可以执行以下查询:
select sum(PriceWIthVat) from vw_mytable