![]() |
|
![]() |
|||
![]() |
SELECT `part_number`, `type`, `description`, `material`,
`thumbnail_photo`, `thumbnail_photo` AS `thumbnail_outlines`,
CONCAT(`size`, `size_unit`) AS `size`,
CONCAT(`length`, `length_unit`) AS `catheter_length`,
IF(`type` LIKE 'Single%', 1,
IF(`type` LIKE 'Double%', 2, 3)
) AS `lumens`
FROM `product`
WHERE `category` LIKE '%Long Term Silicone Central Vein Catheters'
AND `part_number` NOT LIKE 'fake%'
|
|
|||