Editorial / Best Answer
suji
Here are the Binary data types in sql server - bit, binary, varbinary, image.
Bit variables store a single bit with a value of 0, 1 or NULL.
binary(n) variables store n bytes of fixed-size binary data. They may store a maximum of 8,000 bytes.
varbinary(n) variables store variable-length binary data of approximately n bytes. They may store a maximum of 8,000 bytes.
image variables store up to 2 gigabytes of data and are commonly used to store any type of data file.
Rest of the data types are non-binary
Give example for binary datatype non binary datatype?
Editorial / Best Answer
sujiHere are the Binary data types in sql server - bit, binary, varbinary, image. Bit variables store a single bit with a value of 0, 1 or NULL. binary(n) variables store n bytes of fixed-size binary data. They may store a maximum of 8,000 bytes. varbinary(n) variables store variable-length binary data of approximately n bytes. They may store a maximum of 8,000 bytes. image variables store up to 2 gigabytes of data and are commonly used to store any type of data file. Rest of the data types are non-binary
Related Answered Questions
Related Open Questions