Jul 16, 2009 #1 ppbbcp Programmer Joined May 10, 2008 Messages 5 Location US I have a 10 character date field that I need to cast to a teradata date. The table field is begin_date char(10) and has values of 2001-01-10, 2009-07-19 etc. Suggestions?
I have a 10 character date field that I need to cast to a teradata date. The table field is begin_date char(10) and has values of 2001-01-10, 2009-07-19 etc. Suggestions?
Jul 24, 2009 #2 mpramods Technical User Joined Jun 3, 2003 Messages 50 Location US Try this sel cast(begin_date as date) from <table_name> Cheers, Pramod Upvote 0 Downvote