kindly plz anyone can tell me what is the query for updating a table having one column createddatetime which is like '11/30/2010 12:30:01 PM'. i want to set some more records to that values using update command. how?
i can do it using for update.. by manually one by one...
but how to do it using update command? plz help me in this..
i tried this command Like this
"update <table_name> a
set a.createddateti me=to_char('11/30/2010 12:30:01 PM','mm/dd/rrrr hh:nn:ss PM')
where ......."
but it shows invalid number error...
i can do it using for update.. by manually one by one...
but how to do it using update command? plz help me in this..
i tried this command Like this
"update <table_name> a
set a.createddateti me=to_char('11/30/2010 12:30:01 PM','mm/dd/rrrr hh:nn:ss PM')
where ......."
but it shows invalid number error...
Comment