7 lines
145 B
SQL

SELECT DISTINCT induct
FROM package_history
UNION
SELECT DISTINCT lane_id AS induct
FROM pe_history
WHERE lane_id LIKE "UL%"
ORDER BY induct ASC;