Gebruik gewoon Coalesce of NVL om NULL's te verwerken.
De volgende code retourneert 0 als MAX(cid)
is NULL
SELECT COALESCE(MAX(cid), 0)
FROM itemconfiguration
Gebruik gewoon Coalesce of NVL om NULL's te verwerken.
De volgende code retourneert 0 als MAX(cid)
is NULL
SELECT COALESCE(MAX(cid), 0)
FROM itemconfiguration