Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help With SQL Expressin Field - ISNULL for Oracle 1

Status
Not open for further replies.

TomSalvato

Technical User
Mar 24, 2010
64
US
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
 
Thanx so much, Brian ... interestingly enough, I just figured that out by a little trial and error. You're right, it's so simple that I just overlooked the obvious.

Thanx again!

-TS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top