这就是我想要做的。我想看看,基于一定的价格和成本,我的利润是多少。这是一个例子:
SELECT price, cost, profit,
price-5 "price1", cost, price-5-cost "profit1"
FROM table
WHERE product = blue_pants;
这会吐出这样的数据:
price cost profit price1 cost profit1
我希望它是这样的:
price cost profit
price1 cost profit1
这正是我所追求的数据显示方式。那有意义吗?有没有办法做到这一点。对不起,我是一个 SQL 菜鸟。