Is there a Month() function in DB2 SQL?<br><br>I need to tell how many months have elapsed between a certain date and now, i.e. between 27/11/98 and CURDATE()<br><br>Currently I'm using... (DAYS(CURDATE())-DAYS(START_DATE))/30<br><br>But the division slows the query down and leaves me with a nasty decimal running out to 0.000000000. With no ROUND() function in DB2 SQL, I'm left with a messy solution.<br><br>Any iadeas?<br>