I am creating an SQL table to store transactions:
create table dbo.TRANSACTIONS
(
Id int identity not null,
Amount money not null
);
For currency (do I use euros) should I use money, decimal or numeric?
I saw how three were applied to currency columns, so I'm not sure anymore.
Money would be an obvious choice ... But I saw a decimal and numerical value.
By the way, I'm using SQL Server 2012.
thank
source
share