T-SQL 101: 35 What do we mean by data types in SQL Server?
When you store data in a database, individual values are stored in columns. Now columns have 2 basic characteristics:
- Data type
- Nullability
Another common characteristic is:
- Size (can be maximum length, precision, scale, etc.)
The first of these, the data type of the column, determines what types of value can be stored in the column. For example, I might have an email address and I might decide that that is a string of characters, but I might also have a price and might decide that that needs to be a number of some type.
2019-09-16