Jul 16, 2009 #1 ppbbcp Programmer May 10, 2008 5 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 Jun 3, 2003 50 US Try this sel cast(begin_date as date) from <table_name> Cheers, Pramod Upvote 0 Downvote