I am developing a system where I will store transactions of CryptoCurrencies, type Bitcoin, I can not in any way have problems of conversion and rounding, in C # I checked and the best is decimal
, right?
The values will be in this format:
0.000001
I know that money in SQL Server is not a good option, should I go for a decimal (x,x)
?
I can use SQL Server or MySQL database, so I put the tag of the two here, as it is still being decided