Hi Friends,
I have a MySQL table in which i have a time field in INT(10) format. I am storing UnixTime in it. Some of the records have a Zero value and some have a date in it. I want to build a query which shows "No Date" if the value is 0 else show the stored date if there is any date stored in the record on query execution.
The table looks something like this...
ID DATE
1 0
2 0506009
Any Suggestions?