Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
MuraliPrasath
Creator III
Creator III

How to ignore unwanted things in DATE format.

3456556.PNG

I just want to ignore these '0000-00-00' how to achieve this?

1 Solution

Accepted Solutions
avinashelite

if its for only one value then it would be

if(date<>'0000-00-00',date)

View solution in original post

4 Replies
avinashelite

if its for only one value then it would be

if(date<>'0000-00-00',date)

sunny_talwar

If you need to this in the script you can do like this:

Table:

LOAD blahblah,

          DATE

FROM Source

Where DATE <> '0000-00-00');

MuraliPrasath
Creator III
Creator III
Author

Thanks Avinash 🙂

avinashelite

Your always welcome