简体   繁体   中英

MySQL longtext analogue in Microsoft SQL?

I am new to Microsoft SQL, and I am attempting to import a database from MySQL. The only issue that I am having is that the MySQL database uses the longtext data type for several table columns.

What Microsoft SQL datatype is analogous to MySQL longtext ?

Thank you for your time.

Microsoft SQL Server has NTEXT and NVARCHAR(MAX) which are both very similar; NVARCHAR(MAX) (or VARCHAR(MAX) if you don't need to handle internationalisation) is recommended over the earlier NTEXT (and TEXT again if you don't need to store anything other than a single codepage.)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM