what SQL Server 2008 R2 did, automatically, is this:
(CONVERT([decimal](12,1),[OUT_IN_1]/(60.),0)). Namely, SQLServer automatically, by itself, changed format of formula as shown above.
That's fine,
(CONVERT([decimal](12,1),[OUT_IN_1]/(60.),0))
does exactly the same thing as
Cast([OUT_IN_1]/60. As decimal(12,1))
Tom
BTW, if your are going to be writing a lot of SQL, particularly complex statements, I would recommend you write your own SQL and not use query generators or designers (which I presume is what transformed the above expression). Every query designer
I have have seen, including Microsoft's have some things they cannot do and/or some things they do very inefficiently and/or some things they do wrong.
If you are only going to occasionally do straight forward queries, query designers are probably fine. Learning all of SQL is fun, but probably not worth it if you will only use it occasionally.
But there is no problem in the present case. The two expressions do exactly the same thing and are equally efficient. I prefer mine because I think it is simpler and easier to read and certainly less typing, but the other is perfectly fine.
Tom