79754783

Date: 2025-09-03 15:10:41
Score: 0.5
Natty:
Report link

First, you find the prtnum values that have UPCCOD, then from the main table you select only those that are not in that list :

SELECT * 
FROM alt_prtmst 
WHERE prtnum NOT IN (
    SELECT prtnum 
    FROM alt_prtmst 
    WHERE alt_prt_typ = 'UPCCOD'
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: masoudiofficial