Brug blot Coalesce eller NVL til at håndtere NULLs.
Følgende kode returnerer 0 hvis MAX(cid)
er NULL
SELECT COALESCE(MAX(cid), 0)
FROM itemconfiguration
Brug blot Coalesce eller NVL til at håndtere NULLs.
Følgende kode returnerer 0 hvis MAX(cid)
er NULL
SELECT COALESCE(MAX(cid), 0)
FROM itemconfiguration