I guess the first question is, will this update each cell with the proper data?
update table set date_cell = (magic involving date_cell)
And if so the next question is..
what's "magic" ?
Will I get the proper result with:
?
Or do I need to do something more complicated, like a cursor?
Tao Te Ching Discussions : Chapter 9 (includes links to previous chapters)
What is the nature of conflict?
update table set date_cell = (magic involving date_cell)
And if so the next question is..
what's "magic" ?
Will I get the proper result with:
Code:
UPDATE mytable
SET date_cell = (SELECT strftime('%Y-%m-%d %H:%M:%S', date_cell); ) ;
Or do I need to do something more complicated, like a cursor?
Tao Te Ching Discussions : Chapter 9 (includes links to previous chapters)
What is the nature of conflict?