I am creating a SQL table to hold transactions:
create table dbo.TRANSACTIONS
(
Id int identity not null,
Amount money not null
);
For currency (I am using euros) should I use money, decimal, or numeric?
I have seen the three being applied to currency columns so I am not sure anymore.
Money would be the obvious choice ... But I have seen decimal and numeric to.
By the way, I am using SQL Server 2012.
Thank You