Aug 25, 2004 #1 mwhalen Programmer Joined Oct 31, 2000 Messages 217 Location CA in a query, does anyone know of the function and syntax to return a portion of the date as a month?
Sep 1, 2004 #2 tzamora Programmer Joined Apr 15, 2002 Messages 27 Location US create an expression SELECT A.ACQUISITION_DT, MONTH( A.ACQUISITION_DT) FROM PS_ASSET A WHERE A.ASSET_ID = '000000018629' http://programmer-by-the-hour.com Upvote 0 Downvote
create an expression SELECT A.ACQUISITION_DT, MONTH( A.ACQUISITION_DT) FROM PS_ASSET A WHERE A.ASSET_ID = '000000018629' http://programmer-by-the-hour.com