Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
varbinary在 SQL Server 2008中声明的正确方法是什么?现在我这样声明
varbinary
DECLARE @BinaryValue varbinary(MAX)
正确的方法是这样的:
MAX如果可以,请考虑指定长度而不是。
MAX