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 |
|
dirge86
Starting Member
1 Post |
Posted - 2009-12-09 : 17:08:02
|
| I have data in columns with decimals I want to get rid of. For example, 100.10 needs to be 10010please help. |
|
|
russell
Pyro-ma-ni-yak
5072 Posts |
Posted - 2009-12-09 : 17:16:52
|
| what is the data type?Depending on data type, this may workSELECT fieldName * 100 FROM yourTable |
 |
|
|
Nageswar9
Aged Yak Warrior
600 Posts |
Posted - 2009-12-09 : 23:52:49
|
| Hi try this,select replace(column,'.','') from table |
 |
|
|
|
|
|