How do I do this update?
I want to lop off the 4th decimal from a column and update that column.Example:col_a1.23452.34563.4567I want col_a1.23402.34503.4560I thought it was update table set col_a = Trnucate(col_a,3) but this is wrong.
2004-09-10
1 reads