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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Testing DATE for NULL value?

Status
Not open for further replies.

Netherbeast

Programmer
Jun 4, 2002
89
US
Im tring to test a column CURRENT that has DATE values. I want to print "NO DATE" when there is no date. How do you test for null in this case?

Thanks in advance
 
HI
IF CURRENT IS NULL THEN
CURRENT:='NO DATE'
END IF;

THIS U CAN WRITE IN TRIGGER
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top