Search Apartments for rent in Madison WI

Show: 16 32 48
SELECT inventory_items.*, inventory_items.id AS inventory_id, inventory_categories.name AS category_name FROM inventory_items JOIN inventory_category_item ON (inventory_category_item.item_id = inventory_items.id) JOIN inventory_categories ON (inventory_categories.id = inventory_category_item.category_id) WHERE ( show_item = 1 ) AND ( inventory_categories.name LIKE '%campus%' OR inventory_items.name LIKE '%campus%' OR sku LIKE '%campus%' OR brand LIKE '%campus%' OR inventory_items.description LIKE '%campus%' OR features LIKE '%campus%' OR specs LIKE '%campus%' ) GROUP BY inventory_items.name ORDER BY stock_status ASC