items.unit_priceをサブクエリ内で10%増やして別の列に表示しようとしています。ここでサブクエリの値を変更する問題がある
は私のコード
select items.title, items.unit_price, items.unit_price as Price_increase
from artists
join items
on items.artist_id = artists.artist_id
order by price_increase in
(
select distinct round(items.unit_price + (items.unit_price * 0.1), 2) as Price_increase
from artists
where artists.artist_name = "No Rest For The Weary"
)
;
あなたのタイトルは完全にナンセンスです。修正して、私はダウンボートを削除します。 – peterh
これは良いですか? –
はい、私はdownvoteを上に変更しました。ありがとう! – peterh