TomSalvato
Technical User
Hi All,
I know that 'isnull' is not supported by Oracle ... I have the following SQL expression field that is working fine ...
(
SELECT COUNT("TABLE"."OBJECTID")
FROM "DB"."TABLE"
WHERE "TABLE"."RELATEDOID" = "MYTABLE"."OBJECTID"
)
this works, but I need to add another filter ... I need to add the Oracle equivilant of the following ...
AND not isnull("TABLE"."ACTIONDATE")
Thanx for any help!
-TS
I know that 'isnull' is not supported by Oracle ... I have the following SQL expression field that is working fine ...
(
SELECT COUNT("TABLE"."OBJECTID")
FROM "DB"."TABLE"
WHERE "TABLE"."RELATEDOID" = "MYTABLE"."OBJECTID"
)
this works, but I need to add another filter ... I need to add the Oracle equivilant of the following ...
AND not isnull("TABLE"."ACTIONDATE")
Thanx for any help!
-TS