Skip to content
Advertisement

Tag: varbinarymax

What does VARBINARY(MAX) mean?

I’m trying to port a MSSQL database over to MariaDB and I’ve encountered a table creation using varbinary(max): What would this actually do and is there an equivalent type definition in MariaDB that I could use? Answer As others have stated in the comments, VARBINARY(max) in MSSQL refers to: Variable-length binary data. max indicates that the maximum storage size is

Advertisement