How to convert money to decimal in SQL Server stored procedure -


i have stored procedure want convert money type decimal type.

@money = 513.9010 type money

i want convert decimal - how that?

select convert(decimal(7,4),@money) 

Comments

Popular posts from this blog

c++ - protocol buffers - generate NON-inline accessors -

c# - issue attaching/adding an entity object which is detached from the DB Context? -