Dec 9, 2008 #1 ejaggers Programmer Feb 26, 2005 148 US update table set column[7,10] = "2009"; works if column is a string datatype, but how can i change only the year if column is datatype date, using informix SQL?
update table set column[7,10] = "2009"; works if column is a string datatype, but how can i change only the year if column is datatype date, using informix SQL?
Dec 9, 2008 1 #2 PHV MIS Nov 8, 2002 53,708 FR UPDATE table SET column=MDY(MONTH(column),DAY(column),2009); Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
UPDATE table SET column=MDY(MONTH(column),DAY(column),2009); Hope This Helps, PH. FAQ219-2884 FAQ181-2886