Site Sponsored By: SQLDSC - SQL Server Desired State Configuration
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.
I've got a table that contains 2 decimal fields, one called "Time_Required" and the other called "Drawings".I've got a query that will update this field with the following code:
However, instead of seeing 9.002.755.15 type of results, all's I get are 935Any thoughts on this?
spirit1
Cybernetic Yak Master
11752 Posts
Posted - 2004-12-06 : 13:58:10
it seems time_required is integer...Go with the flow & have fun! Else fight the flow
X002548
Not Just a Number
15586 Posts
Posted - 2004-12-06 : 14:14:51
Post the DDL of the table...and why are you converting 1.5?Brett8-)
label
Posting Yak Master
197 Posts
Posted - 2004-12-06 : 14:29:15
quote:Originally posted by X002548 Post the DDL of the table...and why are you converting 1.5?Brett8-)
I was converting the 1.5 basically cause I could think of nothing else to do to fix the problem. However, I've since converted the column to a "float" type and it works just fine now so go figure.