Whats SQL Server NVARCHAR(max) equivalent in MySQL?
8
votes
2
answers
53377
views
Using SQL Server you just have to give the "MAX" parameter to the length of a text data type, but in MySQL there's no such a thing.
According to Ispirer :
> "n" is the maximum number of characters, optional
>
> Range: 1 ⇐ n ⇐ 21845 (65535 bytes is the maximum row size shared among all columns)
Does it mean that:
[SQL Server] "NVARCHAR(MAX)" == [MySQL]"NVARCHAR(N)"
Or do i have to say
NVARCHAR(21845)
as NVARCHAR(MAX)
in MySQL?
Asked by Jonathan Solorzano
(241 rep)
Apr 20, 2015, 01:52 AM
Last activity: Apr 20, 2015, 04:55 AM
Last activity: Apr 20, 2015, 04:55 AM