Microsoft Access memo datatype to MySQL Datatype

拜拜、爱过 提交于 2019-12-10 11:23:21

问题


What datatype in MySQL would be best to use for data that was in Memo on Microsoft Access?


回答1:


TEXT would be a good match.

Text is a blob field that is meant to store strings.
blob is the same for binary data.

See: http://dev.mysql.com/doc/refman/5.0/en/blob.html

Make sure you use a text/blob variant that is large enough to hold the data that is currently in your memo field.
When in doubt longtext will hold up to 4GB.




回答2:


I believe that would be the TEXT type in MySQL you are looking for.

The equivalent on Microsoft SQL server would now be NVARCHAR(MAX) on newer versions, and NTEXT on older versions.



来源:https://stackoverflow.com/questions/7914959/microsoft-access-memo-datatype-to-mysql-datatype

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!