I'm trying to sort a SQL query while prioritizing one specific dataset - e.g.:
table: tbl_properties
field: prop_firmID
I want to list those properties where prop_firmID=32
and second, by price (which I got covered)
In other words - If I sort by prop_firmID - it will list properties associated with prop_firmID=1 first - is there a way to prioritize a specific ID value without creating another sort column?
table: tbl_properties
field: prop_firmID
I want to list those properties where prop_firmID=32
and second, by price (which I got covered)
In other words - If I sort by prop_firmID - it will list properties associated with prop_firmID=1 first - is there a way to prioritize a specific ID value without creating another sort column?