I have a query like so:
SELECT id, name, price, floorplan
FROM Inventory
ORDER BY price
This will return the id, name, price, floorplan from my Inventory table ordered by the price. With this query I get 3 rows returned, the last row has a floorplan value, the other two are null. Is it possible get the non-null floorplan to replace the null floorplan column? I don't want to group these as I need to get the 3 rows returned.