sql server - What is the best SQL field type to use for a Sqlite numeric -


I am loading data from SQL Database in SQL database. The field type is numeric in SQLite. What is the best field type to use, so that I can not do any detail?

What is the representation of the underlying data? In SQLite, numeric is a technically a column relationship and not a storage type. There is no concept of "column relationship" in other databases, which has been explained. In SQL Server, types indicate how the data is being stored

The intent of a numerical column relationship is probably a fixed point numeric value. In that case, the decimal / numeric will be the correct type in the SQL Server.

Note that you can also implement numeric for the date, date time and boolean values ​​in the SQL Server in the corresponding data types (probably date , datetime , or bit ).


Comments

Popular posts from this blog

c# - Reactive Extensions ControlScheduler -

multithreading - Reorderings in java memory model -

java - Add color code support to a Bukkit plugin -