Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
turbo
Starting Member
19 Posts |
Posted - 2013-06-08 : 06:54:00
|
Hi all , I have a series of integer values in a column,A----23433416673545663455I want to place a decimal point so it will look like XX.XX A---23.4334.1667.3545.6634.55Can anyone help me out here Thanks |
|
khtan
In (Som, Ni, Yak)
17689 Posts |
Posted - 2013-06-08 : 09:16:09
|
[code]SELECT A / 100.0 FROM yourtable[/code] KH[spoiler]Time is always against us[/spoiler] |
|
|
|
|
|