In SQLServer for creating a column of type, say VARBINARY or VARCHAR, we can specify the maximum length as
create table sample (c1 varbinary(MAX));
create table sample1 (c1 varchar(MAX));
What is the equivalent syntax for SYBASE ?
VARBINARY(MAX) does not seem to work
Thanks in advance
You can use
Please check with this solution.