To see what values have duplicates:
SELECT t.order_desc,
t.firstname,
t.lastname
FROM db.mytable t
WHERE t.customer_number IN (100, 101, 102, 103, 104, 105)
GROUP BY t.order_desc, t.firstname, t.lastname, t.timeordered
HAVING COUNT(*) > 1
To see the entire record associated with those duplicates:
SELECT x.*
FROM db.mytable x
WHERE EXISTS(SELECT NULL
FROM db.mytable t
WHERE t.customer_number IN (100, 101, 102, 103, 104, 105)
AND t.order_desc = x.order_desc
AND t.firstname = x.firstname
AND t.lastname = x.lastname
AND t.timeordered = x.timeordered
GROUP BY t.order_desc, t.firstname, t.lastname, t.timeordered
HAVING COUNT(*) > 1)
WHERE x.customer_number IN (100, 101, 102, 103, 104, 105)