这就是我想要做的。我想看看,基于一定的价格和成本,我的利润是多少。这是一个例子:
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菜鸟。
答案 0 :(得分:0)
Select price, cost, profit
From table
Where product = 'blue_pants'
Union All
Select price-5, cost, price-5-cost
From table
Where product = 'blue_pants'
这显然会重复行。为了知道哪些行应该出现在第一个查询中,哪个行应该出现在第二个查询中,我们需要知道标准(例如Where price-5 > 0
)。