我有两张桌子叫Listing
和ListingProperties
Listing (ID, CurrentPrice)
ListingProperties (id, listingId, Fixedprice)
问题是我想按Fixedprice
. 但有些列表没有Fixedprice
.
在这种情况下,我想检查当前价格并与其他价格进行比较,Fixedprice
然后订购。
清单
id name currentprice
1 a 10
2 b 50
3 c 40
列出属性
id listingId Fixedprice
1 1 20
2 3 30
订购后所需的顺序是
name
a
c
b