I'm trying to use DATEDIFF function inside an IF clause as the following:
select if('2006-04-01',DATEDIFF('2006-04-01','2007-04-01'),'y');
But the result I get is BLOB!!
How Can I use DATEDIFF within an IF statement and get a meaningful result.
Thank you all